summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/editors/nixvim.nix61
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; };
+ # }
+ # ];
};
}