20 lines
416 B
Nix
20 lines
416 B
Nix
|
{ config, lib, pkgs, inputs, ... }:
|
||
|
|
||
|
let
|
||
|
inherit (lib) mkEnableOption mkIf readFile;
|
||
|
in
|
||
|
{
|
||
|
home-manager.users.moritz.programs.nixvim = {
|
||
|
plugins.treesitter = {
|
||
|
enable = true;
|
||
|
folding = true;
|
||
|
nixvimInjections = true;
|
||
|
settings.indent.enable = true;
|
||
|
settings.highlight.enable = true;
|
||
|
};
|
||
|
performance.combinePlugins.standalonePlugins = [
|
||
|
"nvim-treesitter"
|
||
|
];
|
||
|
};
|
||
|
}
|