mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -08:00
29 lines
512 B
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;
|
|
};
|
|
};
|
|
}
|