neovim-flake/config/default.nix

28 lines
430 B
Nix
Raw Normal View History

2024-09-02 18:28:53 -07:00
{
imports = [
./plugins
./keymaps.nix
./init.nix
2024-09-11 12:30:28 -07:00
./autocmds.nix
2024-09-02 18:28:53 -07:00
];
viAlias = true;
vimAlias = true;
withNodeJs = true;
withRuby = true;
luaLoader.enable = true;
performance = {
combinePlugins = {
enable = true;
standalonePlugins = [
"nvim-treesitter"
];
};
byteCompileLua = {
enable = true;
plugins = true;
nvimRuntime = true;
};
};
}