neovim-flake/config/default.nix

18 lines
281 B
Nix

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