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

15 lines
243 B
Nix
Raw Normal View History

2023-11-20 15:09:07 +00:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
nodePackages.bash-language-server
shellcheck
2024-01-22 21:30:32 +00:00
shfmt
];
2023-11-20 15:09:07 +00:00
programs.neovim = {
nvim-lspconfig = ''
2024-01-04 17:01:01 +00:00
require('utils.lsp').setup(require('lspconfig').bashls) {}
2023-11-20 15:09:07 +00:00
'';
};
}