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

9 lines
98 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;
2023-11-14 15:40:34 +01:00
};
}