more nvim plugins
This commit is contained in:
parent
0bab8ffec3
commit
bdf61ca40f
1 changed files with 10 additions and 1 deletions
11
home.nix
11
home.nix
|
@ -287,6 +287,10 @@
|
||||||
key = "\\";
|
key = "\\";
|
||||||
action = "<cmd>Neotree toggle<cr>";
|
action = "<cmd>Neotree toggle<cr>";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
key = "<leader>?";
|
||||||
|
action = "<cmd>WhichKey<cr>";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
opts = {
|
opts = {
|
||||||
conceallevel = 1;
|
conceallevel = 1;
|
||||||
|
@ -305,6 +309,7 @@
|
||||||
cmp-fish.enable = true;
|
cmp-fish.enable = true;
|
||||||
cmp-nvim-lsp.enable = true;
|
cmp-nvim-lsp.enable = true;
|
||||||
lualine.enable = true;
|
lualine.enable = true;
|
||||||
|
fidget.enable = true;
|
||||||
fugitive.enable = true;
|
fugitive.enable = true;
|
||||||
gitblame.enable = true;
|
gitblame.enable = true;
|
||||||
gitsigns.enable = true;
|
gitsigns.enable = true;
|
||||||
|
@ -318,6 +323,7 @@
|
||||||
yamlls.enable = true;
|
yamlls.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
neogit.enable = true;
|
||||||
neo-tree = {
|
neo-tree = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableGitStatus = true;
|
enableGitStatus = true;
|
||||||
|
@ -326,7 +332,7 @@
|
||||||
closeIfLastWindow = true;
|
closeIfLastWindow = true;
|
||||||
};
|
};
|
||||||
nix.enable = true;
|
nix.enable = true;
|
||||||
noice.enable = true;
|
noice.enable = false;
|
||||||
notify.enable = true;
|
notify.enable = true;
|
||||||
nvim-autopairs.enable = true;
|
nvim-autopairs.enable = true;
|
||||||
nvim-colorizer.enable = true;
|
nvim-colorizer.enable = true;
|
||||||
|
@ -344,7 +350,9 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
oil.enable = true;
|
oil.enable = true;
|
||||||
|
render-markdown.enable = true;
|
||||||
vim-surround.enable = true;
|
vim-surround.enable = true;
|
||||||
|
which-key.enable = true;
|
||||||
telescope = {
|
telescope = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extensions = {
|
extensions = {
|
||||||
|
@ -360,6 +368,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
web-devicons.enable = true;
|
web-devicons.enable = true;
|
||||||
|
zen-mode.enable = true;
|
||||||
};
|
};
|
||||||
extraPlugins = with pkgs.vimPlugins; [
|
extraPlugins = with pkgs.vimPlugins; [
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue