neovim-flake/homeManagerModule/default.nix

22 lines
386 B
Nix
Raw Normal View History

{pkgs, ...}: {
imports = [./plugins ./keymaps.nix];
programs.nixvim = {
enable = true;
viAlias = true;
vimAlias = true;
withNodeJs = true;
withRuby = true;
luaLoader.enable = true;
performance = {
combinePlugins.enable = true;
byteCompileLua.enable = true;
};
extraPackages = with pkgs; [
ripgrep
yazi
fd
];
}