add a basic nixvim
config
This commit is contained in:
parent
0122fc11c6
commit
23ccfed77e
1 changed files with 12 additions and 1 deletions
|
@ -1,7 +1,18 @@
|
|||
{
|
||||
{ pkgs, ... }: {
|
||||
programs.nixvim = {
|
||||
extraPackages = with pkgs; [ fd ];
|
||||
enable = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
colorschemes.catppuccin.enable = true;
|
||||
plugins = {
|
||||
conform-nvim = {
|
||||
enable = true;
|
||||
};
|
||||
treesitter.enable = true;
|
||||
cmp.enable = true;
|
||||
cmp-nvim-lsp.enable = true;
|
||||
lsp.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue