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

64 lines
1.3 KiB
Nix
Raw Permalink 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 {
config = mkIf cfg.enable {
programs = {
# I love doing typos
bash.shellAliases = {
nivm = "nvim";
nivim = "nvim";
};
neovim = {
defaultEditor = true;
viAlias = true;
vimAlias = true;
# We keep the packages here because shell scripts are too common
extraPackages = attrValues {
inherit
(pkgs.nodePackages)
bash-language-server
;
inherit
(pkgs)
shellcheck
;
};
extraLuaConfig =
# lua
''
vim.api.nvim_create_autocmd('FileType', {
pattern = 'sh',
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
});
local default_capabilities = require('cmp_nvim_lsp').default_capabilities();
require('lspconfig').bashls.setup({
capabilities = default_capabilities,
settings = {
bashIde = {
shellcheckPath = '${getExe pkgs.shellcheck}',
},
},
});
'';
};
};
};
# For accurate stack trace
_file = ./default.nix;
}