configuration.nix/modules/home/programs/neovim/default.nix

10 lines
125 B
Nix
Raw Normal View History

2023-11-18 07:42:50 +01:00
{ nvim, ... }:
nvim
2023-11-14 15:40:34 +01:00
{
2023-11-18 07:42:50 +01:00
enable = true;
plugins.lsp.servers = {
bashls.enable = true;
2024-01-29 15:52:28 +01:00
nushell.enable = true;
2023-11-14 15:40:34 +01:00
};
}