From 358abc0fea34e6da979aae8128906e927d5842ce Mon Sep 17 00:00:00 2001 From: kenji Date: Wed, 24 Dec 2025 13:24:30 -0600 Subject: [PATCH] fixed problem regarding treesitter and harpoon --- config/plugins.nix | 1 - config/sets.nix | 23 +++++++++++------------ 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/config/plugins.nix b/config/plugins.nix index f205cbd..532fbdf 100644 --- a/config/plugins.nix +++ b/config/plugins.nix @@ -30,7 +30,6 @@ in { ]; extraConfigLua = '' - require("telescope").load_extension('harpoon') require("notify").setup({ background_colour = "#000000", diff --git a/config/sets.nix b/config/sets.nix index d18fbfe..d735fb7 100644 --- a/config/sets.nix +++ b/config/sets.nix @@ -33,15 +33,14 @@ watch_gitdir = {follow_files = true;}; }; }; - harpoon = { - enable = true; - saveOnToggle = true; - saveOnChange = true; - enterOnSendcmd = false; - markBranch = true; + enable = false; + settings = { + save_on_toggle = true; + save_on_change = true; + enter_on_sendcmd = false; + }; }; - hop.enable = true; illuminate.enable = true; image.enable = true; @@ -143,13 +142,12 @@ }; render-markdown.enable = true; todo-comments.enable = true; - treesitter = { enable = true; - folding = false; - settings.indent.enable = true; + folding.enable = false; # Fixes the folding deprecation warning settings = { - auto_install = true; + indent.enable = true; + auto_install = false; # Disable runtime installation ensure_installed = [ "git_config" "git_rebase" @@ -158,10 +156,11 @@ "gitignore" "bash" "python" + "lua" + "nix" ]; }; }; - vim-surround.enable = true; web-devicons.enable = true; };