neovim-flake/config/default.nix

30 lines
512 B
Nix
Raw Permalink 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"
2024-09-17 00:49:49 -07:00
"vimplugin-treesitter-grammar-nix"
2024-09-27 14:49:02 -07:00
"vimplugin-typst-preview.nvim"
];
};
byteCompileLua = {
enable = true;
plugins = true;
nvimRuntime = true;
};
};
}