mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-19 03:02:17 +00:00
26 lines
468 B
Nix
26 lines
468 B
Nix
|
{
|
||
|
programs.nixvim.plugins = {
|
||
|
treesitter = {
|
||
|
enable = true;
|
||
|
|
||
|
nixvimInjections = true;
|
||
|
|
||
|
settings = {
|
||
|
highlight.enable = true;
|
||
|
indent.enable = true;
|
||
|
};
|
||
|
folding = true;
|
||
|
};
|
||
|
|
||
|
treesitter-refactor = {
|
||
|
enable = true;
|
||
|
highlightDefinitions = {
|
||
|
enable = true;
|
||
|
# set to false if you have an updatetime of ~100
|
||
|
clearOnCursorMove = false;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
hmts.enable = true;
|
||
|
};
|
||
|
}
|