Files
nix-config-v2/home/neovim.nix

23 lines
459 B
Nix
Raw Normal View History

{ 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;
# };
# };
2024-09-03 22:24:20 -04:00
}