neovim-flake/config/default.nix

19 lines
300 B
Nix

{ pkgs, ... }:
{
imports = [
./plugins
./keymaps.nix
./init.nix
./autocmds.nix
];
viAlias = true;
vimAlias = true;
withNodeJs = true;
withRuby = true;
luaLoader.enable = true;
performance = {
combinePlugins.enable = true;
byteCompileLua.enable = true;
};
}