configuration.nix/modules/home/programs/neovim/default.nix
2023-11-21 16:50:22 +02:00

9 lines
98 B
Nix

{ nvim, ... }:
nvim
{
enable = true;
plugins.lsp.servers = {
bashls.enable = true;
};
}