nixos-systems/modules/home/nixvim.nix
Eli Ribble c022445849 Add more complex user setup for eliribble
Includes fish functions and neovim via nix
2025-07-16 15:19:35 -07:00

18 lines
237 B
Nix

{
programs.nixvim = {
colorschemes.catppuccin.enable = true;
enable = true;
opts = {
number = true;
};
plugins.lsp = {
enable = true;
servers = {
# golang
gopls = {
enable = true;
};
};
};
};
}