Wyatt J. Miller
41022a0ae3
home explictly needed map wrapper (?) around the existing modules that are needed
15 lines
292 B
Nix
15 lines
292 B
Nix
{dirs, ...}: {
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
vimAlias = true;
|
|
};
|
|
|
|
xdg.configFile = {
|
|
nvim = {
|
|
onChange = "nvim --headless -c 'if exists(\":LuaCacheClear\") | :LuaCacheClear' +quitall";
|
|
source = dirs.defaults + /nvim;
|
|
};
|
|
};
|
|
}
|