neovim-flake/config/default.nix

29 lines
512 B
Nix

{
imports = [
./plugins
./keymaps.nix
./init.nix
./autocmds.nix
];
viAlias = true;
vimAlias = true;
withNodeJs = true;
withRuby = true;
luaLoader.enable = true;
performance = {
combinePlugins = {
enable = true;
standalonePlugins = [
"nvim-treesitter"
"vimplugin-treesitter-grammar-nix"
"vimplugin-typst-preview.nvim"
];
};
byteCompileLua = {
enable = true;
plugins = true;
nvimRuntime = true;
};
};
}