nixos-configs/common/home/neovim/langs/bash.nix
matt1432 c1e0932486
All checks were successful
Discord / discord commits (push) Has been skipped
feat(nvim): use nvim-nightly
2024-05-15 18:55:07 -04:00

47 lines
955 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(require('coq').lsp_ensure_capabilities({
settings = {
bashIde = {
shellcheckPath = '${lib.getExe pkgs.shellcheck}',
},
},
}));
'';
};
};
}