Files
nix-config-v2/home/neovim.nix
2025-08-10 01:52:46 -04:00

23 lines
459 B
Nix

{ nvf, ...}: {
imports = [
nvf.homeManagerModules.default
];
programs.nvf.enable = true;
### --- OLD NEOVIM CONFIG BASED ON LUA CONFIG ---
#
# programs.neovim = {
# enable = true;
# defaultEditor = true;
# vimAlias = true;
# };
#
# xdg.configFile = {
# nvim = {
# onChange = "nvim --headless -c 'if exists(\":LuaCacheClear\") | :LuaCacheClear' +quitall";
# source = dirs.defaults + /nvim;
# };
# };
}