28 lines
573 B
Nix
28 lines
573 B
Nix
# A cat clone with syntax highlighting and Git integration.
|
|
{inputs, ...}: {
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
./options.nix
|
|
./plugins
|
|
./autocommands.nix
|
|
./keymappings.nix
|
|
];
|
|
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;
|
|
};
|
|
};
|
|
}
|