fixed problem regarding treesitter and harpoon

This commit is contained in:
kenji
2025-12-24 13:24:30 -06:00
parent 71f2106966
commit 358abc0fea
2 changed files with 11 additions and 13 deletions
-1
View File
@@ -30,7 +30,6 @@ in {
]; ];
extraConfigLua = '' extraConfigLua = ''
require("telescope").load_extension('harpoon')
require("notify").setup({ require("notify").setup({
background_colour = "#000000", background_colour = "#000000",
+11 -12
View File
@@ -33,15 +33,14 @@
watch_gitdir = {follow_files = true;}; watch_gitdir = {follow_files = true;};
}; };
}; };
harpoon = { harpoon = {
enable = true; enable = false;
saveOnToggle = true; settings = {
saveOnChange = true; save_on_toggle = true;
enterOnSendcmd = false; save_on_change = true;
markBranch = true; enter_on_sendcmd = false;
};
}; };
hop.enable = true; hop.enable = true;
illuminate.enable = true; illuminate.enable = true;
image.enable = true; image.enable = true;
@@ -143,13 +142,12 @@
}; };
render-markdown.enable = true; render-markdown.enable = true;
todo-comments.enable = true; todo-comments.enable = true;
treesitter = { treesitter = {
enable = true; enable = true;
folding = false; folding.enable = false; # Fixes the folding deprecation warning
settings.indent.enable = true;
settings = { settings = {
auto_install = true; indent.enable = true;
auto_install = false; # Disable runtime installation
ensure_installed = [ ensure_installed = [
"git_config" "git_config"
"git_rebase" "git_rebase"
@@ -158,10 +156,11 @@
"gitignore" "gitignore"
"bash" "bash"
"python" "python"
"lua"
"nix"
]; ];
}; };
}; };
vim-surround.enable = true; vim-surround.enable = true;
web-devicons.enable = true; web-devicons.enable = true;
}; };