forked from Shinonome/fred-neovim
fixed problem regarding treesitter and harpoon
This commit is contained in:
@@ -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
@@ -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;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user