14 lines
202 B
Nix
14 lines
202 B
Nix
{
|
|
programs.nixvim = {
|
|
plugins.treesitter = {
|
|
enable = true;
|
|
};
|
|
plugins.treesj = {
|
|
enable = true;
|
|
settings = {
|
|
use_default_keymaps = false;
|
|
};
|
|
};
|
|
};
|
|
}
|