Compare commits

..

No commits in common. "df70ebbe188646c5ba092bfafbb6ad2ceb2b6efc" and "13db25f74de21d019ee813ae6b7ac5c02b64fb97" have entirely different histories.

4 changed files with 5 additions and 22 deletions

View File

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

View File

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

View File

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

View File

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