nixos-config/home-manager/modules/neovim/default.nix
2024-08-18 23:58:42 -04:00

26 lines
528 B
Nix

# A cat clone with syntax highlighting and Git integration.
{inputs, ...}: {
imports = [
inputs.nixvim.homeManagerModules.nixvim
./options.nix
./plugins
];
programs.nixvim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
luaLoader.enable = true;
performance = {
combinePlugins = {
enable = true;
standalonePlugins = [
"hmts.nvim"
"nvim-treesitter"
];
};
byteCompileLua.enable = true;
};
};
}