add core configuration
This commit is contained in:
parent
ad124505da
commit
c556ce55b6
94 changed files with 2816 additions and 959 deletions
19
home-manager/modules/neovim/plugins/treesitter.nix
Normal file
19
home-manager/modules/neovim/plugins/treesitter.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{config, ...}: {
|
||||
programs.nixvim.plugins.treesitter = {
|
||||
enable = true;
|
||||
nixvimInjections = true;
|
||||
settings = {
|
||||
indent.enable = true;
|
||||
incremental_selection = {
|
||||
enable = true;
|
||||
# keymaps = {
|
||||
# init_selection = "<c-space>";
|
||||
# node_incremental = "<c-space>";
|
||||
# scope_incremental = "<c-s";
|
||||
# node_decremental = "<c-backspace>";
|
||||
# };
|
||||
};
|
||||
highlight.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue