diff --git a/example.nix b/example.nix index 0fe208b1..20a89dc2 100644 --- a/example.nix +++ b/example.nix @@ -1,7 +1,7 @@ { pkgs, ... }: { programs.nixvim = { - # This just enables NixVim. + # This just enables NixVim. # If all you have is this, then there will be little visible difference # when compared to just installing NeoVim. enable = true; diff --git a/plugins/nvim-lsp/basic-servers.nix b/plugins/nvim-lsp/basic-servers.nix index 3882d8d9..385173cc 100644 --- a/plugins/nvim-lsp/basic-servers.nix +++ b/plugins/nvim-lsp/basic-servers.nix @@ -2,6 +2,11 @@ let helpers = import ./helpers.nix args; servers = [ + { + name = "bashls"; + description = "Enable bashls, for bash."; + packages = [ pkgs.nodePackages.bash-language-server ]; + } { name = "clangd"; description = "Enable clangd LSP, for C/C++.";