From 94f56d817d2b8db400d483f4862d78e3d8aef5fd Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Mon, 18 Mar 2024 08:54:09 -0400 Subject: [PATCH] helix: start using it --- home/helix.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home/helix.nix b/home/helix.nix index c4e0afe..e3feb78 100644 --- a/home/helix.nix +++ b/home/helix.nix @@ -1,5 +1,12 @@ { programs.helix = { enable = true; + settings = { + theme = "snazzy"; + editor .true-color = true; + keys.insert.j.j = "normal_mode"; + keys.insert.s.s = ":write"; # TODO: this should also put back in normal_mode + keys.normal.s.s = ":write"; + }; }; }