forked from Shinonome/fred-neovim
fixed problem regarding treesitter and harpoon
This commit is contained in:
@@ -30,7 +30,6 @@ in {
|
||||
];
|
||||
|
||||
extraConfigLua = ''
|
||||
require("telescope").load_extension('harpoon')
|
||||
|
||||
require("notify").setup({
|
||||
background_colour = "#000000",
|
||||
|
||||
+11
-12
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user