flake/nixos/nvim.nix

19 lines
382 B
Nix
Raw Normal View History

2024-11-20 12:12:15 -05:00
{ pkgs, ... }: {
2024-11-20 11:41:10 -05:00
programs.nixvim = {
2024-11-20 12:12:15 -05:00
extraPackages = with pkgs; [ fd ];
2024-11-16 13:38:09 -05:00
enable = true;
viAlias = true;
vimAlias = true;
2024-11-20 12:12:15 -05:00
colorschemes.catppuccin.enable = true;
plugins = {
conform-nvim = {
enable = true;
};
treesitter.enable = true;
cmp.enable = true;
cmp-nvim-lsp.enable = true;
lsp.enable = true;
};
2024-11-16 13:38:09 -05:00
};
}