Compare commits

..

3 Commits

Author SHA1 Message Date
Patrick Neff df70ebbe18 add undotree keybind 2024-08-07 12:05:34 +02:00
Patrick Neff 66b7f13861 add treesitter-context and ts-autotag to treesitter 2024-08-07 12:05:18 +02:00
Patrick Neff 187cc0175e add transparent plugin 2024-08-07 12:04:52 +02:00
4 changed files with 22 additions and 5 deletions

View File

@ -21,6 +21,7 @@
./lastplace.nix
./codeium.nix
./undotree.nix
./transparent.nix
./lsp
];
extraPlugins = with pkgs.vimPlugins;

View File

@ -0,0 +1,3 @@
{
plugins.transparent.enable = true;
}

View File

@ -1,9 +1,13 @@
{
plugins.treesitter = {
enable = true;
settings = {
indent.enable = true;
plugins = {
treesitter = {
enable = true;
settings = {
indent.enable = true;
};
folding = true;
};
folding = true;
treesitter-context.enable = true;
ts-autotag.enable = true;
};
}

View File

@ -1,3 +1,12 @@
{
plugins.undotree.enable = true;
keymaps = [
{
key = "<leader>u";
action = "<cmd>UndotreeToggle<CR>";
options = {
silent = true;
};
}
];
}