From 4ca22e1afaee05070470599f9322869a2f179812 Mon Sep 17 00:00:00 2001 From: William Date: Fri, 18 Aug 2023 11:54:58 -0300 Subject: [PATCH] mod helix settings --- users/common/programs.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/users/common/programs.nix b/users/common/programs.nix index 9c2ff1d..a7b7e81 100644 --- a/users/common/programs.nix +++ b/users/common/programs.nix @@ -9,6 +9,27 @@ enable = true; enableFishIntegration = true; }; + helix = { + enable = true; + settings = { + theme = "catppuccin-mocha_transparent"; + editor = { + line-number = "relative"; + cursor-shape.insert = "bar"; + mouse = false; + }; + keys.normal.space = { + space = "file_picker"; + w = ":w"; + q = ":q"; + esc = [ "collapse_selection" "keep_primary_selection" ]; + }; + }; + themes.catppuccin-mocha_transparent = { + inherits = "catppuccin_mocha"; + "ui.background" = "{}"; + }; + }; direnv = { enable = true; nix-direnv.enable = true;