Add nvim-lazy submodule and add plugin configuration.
This commit is contained in:
parent
f545e30831
commit
b1ad0b623a
39 changed files with 1599 additions and 0 deletions
14
pkgsets/nvim/lsp/bash.nix
Normal file
14
pkgsets/nvim/lsp/bash.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
lib.optionalString (lib.elem "nvim::lsp::bash" config.machine.pkgs) # lua
|
||||
''
|
||||
lspconfig.bashls.setup({
|
||||
cmd = {"${pkgs.nodePackages.bash-language-server}/bin/bash-language-server", "start"},
|
||||
filetypes = {"sh"},
|
||||
})
|
||||
''
|
Loading…
Add table
Add a link
Reference in a new issue