45 lines
937 B
Nix
45 lines
937 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}',
|
|
},
|
|
},
|
|
}));
|
|
'';
|
|
};
|
|
};
|
|
}
|