neovim-flake/config/default.nix

20 lines
300 B
Nix
Raw Normal View History

2024-09-02 18:28:53 -07:00
{ pkgs, ... }:
{
imports = [
./plugins
./keymaps.nix
./init.nix
2024-09-11 12:30:28 -07:00
./autocmds.nix
2024-09-02 18:28:53 -07:00
];
viAlias = true;
vimAlias = true;
withNodeJs = true;
withRuby = true;
luaLoader.enable = true;
performance = {
combinePlugins.enable = true;
byteCompileLua.enable = true;
};
}