nixos-configs/common/home/neovim/langs/bash.nix
matt1432 d4d98bba73
All checks were successful
Discord / discord commits (push) Has been skipped
feat(nvim): switch to cmp and add package-info
2024-07-28 02:54:34 -04:00

47 lines
975 B
Nix

{
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;
extraPackages = lib.mkIf neovimIde [
pkgs.nodePackages.bash-language-server
pkgs.shellcheck
];
extraLuaConfig =
lib.mkIf neovimIde
# lua
''
vim.api.nvim_create_autocmd('FileType', {
pattern = 'sh',
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
});
require('lspconfig').bashls.setup({
capabilities = require('cmp_nvim_lsp').default_capabilities(),
settings = {
bashIde = {
shellcheckPath = '${lib.getExe pkgs.shellcheck}',
},
},
});
'';
};
};
}