nixos-configs/homeManagerModules/neovim/langs/bash.nix

59 lines
1.2 KiB
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}: let
2024-12-16 17:44:17 -05:00
inherit (lib) attrValues getExe mkIf;
cfg = config.programs.neovim;
in {
programs = mkIf cfg.enable {
# I love doing typos
bash.shellAliases = {
nivm = "nvim";
nivim = "nvim";
};
neovim = {
defaultEditor = true;
viAlias = true;
vimAlias = true;
2024-12-16 17:44:17 -05:00
extraPackages = mkIf cfg.enableIde (attrValues {
inherit
(pkgs.nodePackages)
bash-language-server
;
inherit
(pkgs)
shellcheck
;
});
2024-05-11 19:27:26 -04:00
extraLuaConfig =
mkIf cfg.enableIde
2024-06-09 22:49:30 -04:00
# lua
''
2024-12-16 17:44:17 -05:00
local default_capabilities = require('cmp_nvim_lsp').default_capabilities();
vim.api.nvim_create_autocmd('FileType', {
2024-06-09 22:49:30 -04:00
pattern = 'sh',
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
});
2024-05-11 14:42:59 -04:00
require('lspconfig').bashls.setup({
2024-12-16 17:44:17 -05:00
capabilities = default_capabilities,
2024-05-11 14:42:59 -04:00
settings = {
bashIde = {
shellcheckPath = '${getExe pkgs.shellcheck}',
2024-05-11 14:42:59 -04:00
},
},
});
'';
};
};
}