neovim-flake/homeManagerModule/default.nix

17 lines
327 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-08-24 23:09:28 -07:00
imports = [./plugins ./keymaps.nix ./init.nix];
programs.nixvim = {
enable = true;
viAlias = true;
vimAlias = true;
withNodeJs = true;
withRuby = true;
luaLoader.enable = true;
performance = {
combinePlugins.enable = true;
byteCompileLua.enable = true;
};
2024-08-24 23:06:12 -07:00
};
}