nixos-configs/common/home/neovim/langs/bash.nix
matt1432 0667f0f4c9
All checks were successful
Discord / discord commits (push) Has been skipped
fix(nvim): keep bash settings even when not using as IDE
2024-05-09 09:13:40 -04:00

38 lines
622 B
Nix

{
config,
pkgs,
lib,
...
}: let
inherit (config.vars) neovimIde;
inherit (pkgs) vimPlugins;
in {
programs = {
# I love doing typos
bash.shellAliases = {
nivm = "nvim";
nivim = "nvim";
};
neovim = {
defaultEditor = true;
viAlias = true;
vimAlias = true;
extraLuaConfig =
/*
lua
*/
''
vim.api.nvim_create_autocmd("FileType", {
pattern = 'sh',
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
});
'';
plugins =
lib.mkIf neovimIde [
];
};
};
}