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
|
|
|
];
|
2024-08-24 23:55:51 -07:00
|
|
|
viAlias = true;
|
|
|
|
vimAlias = true;
|
2024-08-24 23:36:19 -07:00
|
|
|
withNodeJs = true;
|
|
|
|
withRuby = true;
|
|
|
|
|
|
|
|
luaLoader.enable = true;
|
|
|
|
performance = {
|
2024-09-16 23:48:33 -07:00
|
|
|
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"
|
2024-09-16 23:48:33 -07:00
|
|
|
];
|
|
|
|
};
|
|
|
|
byteCompileLua = {
|
|
|
|
enable = true;
|
|
|
|
plugins = true;
|
|
|
|
nvimRuntime = true;
|
|
|
|
};
|
2024-08-24 23:36:19 -07:00
|
|
|
};
|
|
|
|
}
|