nixos-configs/common/home/neovim/langs/bash.nix

48 lines
975 B
Nix
Raw Normal View History

{
config,
pkgs,
lib,
...
}: let
inherit (config.vars) neovimIde;
in {
programs = {
# I love doing typos
bash.shellAliases = {
nivm = "nvim";
nivim = "nvim";
};
neovim = {
defaultEditor = true;
viAlias = true;
vimAlias = true;
2024-05-11 19:27:26 -04:00
extraPackages = lib.mkIf neovimIde [
pkgs.nodePackages.bash-language-server
pkgs.shellcheck
];
extraLuaConfig =
2024-05-11 14:42:59 -04:00
lib.mkIf neovimIde
2024-06-09 22:49:30 -04:00
# lua
''
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({
capabilities = require('cmp_nvim_lsp').default_capabilities(),
2024-05-11 14:42:59 -04:00
settings = {
bashIde = {
2024-05-15 18:55:07 -04:00
shellcheckPath = '${lib.getExe pkgs.shellcheck}',
2024-05-11 14:42:59 -04:00
},
},
});
'';
};
};
}