diff options
| author | adikro <adikro@disroot.org> | 2025-11-15 18:01:58 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2025-11-15 18:01:58 +0100 |
| commit | d77aa6e7064d8e4c523fb9ec2fbeec4c79d30e61 (patch) | |
| tree | 74c2bda4a7b69a6a52d4ab7f4969926e60a86dc4 /home | |
| parent | 18058297ef26d00ca2d124a405d4aef8e03b3318 (diff) | |
cleaned up nixvim file
Diffstat (limited to 'home')
| -rw-r--r-- | home/editors/nixvim.nix | 61 |
1 files changed, 32 insertions, 29 deletions
diff --git a/home/editors/nixvim.nix b/home/editors/nixvim.nix index 42207ac..5f00e4c 100644 --- a/home/editors/nixvim.nix +++ b/home/editors/nixvim.nix @@ -15,21 +15,23 @@ nvim-autopairs.enable = true; neoscroll.enable = true; bufferline.enable = true; + web-devicons.enable = true; + treesitter = { enable = true; settings = { indent.enable = true; }; }; - web-devicons.enable = true; + telescope = { enable = true; extensions = { fzf-native = { enable = true; - }; - }; - }; + }; + }; + }; notify = { enable = true; @@ -53,6 +55,7 @@ maxTime = 1000; }; }; + nix.enable = true; lsp = { enable = true; @@ -88,30 +91,30 @@ }; }; - keymaps = [ - { - key = "<Up>"; - action = "<Nop>"; - mode = [ "n" "i" "v" ]; - options = { silent = true; }; - } - { key = "<Down>"; - action = "<Nop>"; - mode = [ "n" "i" "v" ]; - options = { silent = true; }; - } - { - key = "<Left>"; - action = "<Nop>"; - mode = [ "n" "i" "v" ]; - options = { silent = true; }; - } - { - key = "<Right>"; - action = "<Nop>"; - mode = [ "n" "i" "v" ]; - options = { silent = true; }; - } - ]; + # keymaps = [ + # { + # key = "<Up>"; + # action = "<Nop>"; + # mode = [ "n" "i" "v" ]; + # options = { silent = true; }; + # } + # { key = "<Down>"; + # action = "<Nop>"; + # mode = [ "n" "i" "v" ]; + # options = { silent = true; }; + # } + # { + # key = "<Left>"; + # action = "<Nop>"; + # mode = [ "n" "i" "v" ]; + # options = { silent = true; }; + # } + # { + # key = "<Right>"; + # action = "<Nop>"; + # mode = [ "n" "i" "v" ]; + # options = { silent = true; }; + # } + # ]; }; } |
