nixos-configs/common/home/neovim/langs/bash.nix
matt1432 2326ea6bb9
Some checks are pending
Discord / discord commits (push) Waiting to run
fix(nvim): set correct path to shellcheck
2024-05-15 15:49:13 -04:00

47 lines
959 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 = '${pkgs.shellcheck}/bin/shellcheck',
},
},
}));
'';
};
};
}