neovim-flake/config/default.nix
Youwen Wu 414e46dd15
feat: minor overhaul
* switch to oil.nvim from yazi
* use lualine with custom config
* optimize settings
2024-09-16 23:49:09 -07:00

27 lines
430 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"
];
};
byteCompileLua = {
enable = true;
plugins = true;
nvimRuntime = true;
};
};
}