nixos-configuration/jrpotter/neovim/lang/bash.nix

14 lines
240 B
Nix
Raw Normal View History

2023-11-20 15:09:07 +00:00
{ pkgs, ... }:
{
programs.neovim = {
nvim-lspconfig = ''
require('init.lsp').setup(require('lspconfig').bashls) {}
'';
extraPackages = with pkgs; [
nodePackages.bash-language-server
shellcheck
];
};
}