nixos-configuration/hive/framework/jrpotter/lang/bash.nix

14 lines
232 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
nodePackages.bash-language-server
shellcheck
];
programs.neovim = {
nvim-lspconfig = ''
require('init.lsp').setup(require('lspconfig').bashls) {}
'';
};
}