summaryrefslogtreecommitdiff
path: root/home-manager/helix.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/helix.nix')
-rw-r--r--home-manager/helix.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/home-manager/helix.nix b/home-manager/helix.nix
deleted file mode 100644
index a8891a5..0000000
--- a/home-manager/helix.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ pkgs, catppuccin-helix, ... }: {
- # https://github.com/catppuccin/helix
- xdg.configFile."helix/themes".source = "${catppuccin-helix}/themes/default";
-
- programs.helix = {
- enable = true;
- package = pkgs.helix;
- # defaultEditor = true;
- settings = {
- theme = "catppuccin_mocha";
- editor = {
- line-number = "relative";
- cursorline = true;
- color-modes = true;
- lsp.display-messages = true;
- cursor.shape = {
- insert = "bar";
- normal = "block";
- select = "underline";
- };
- indent-guides.render = true;
- };
- };
- };
-}