From c7f4d3e26f75c0d172076fce925f7159ea247eac Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Fri, 8 Mar 2024 12:26:20 +0100 Subject: [PATCH] attempt at fixing vue syntax --- .../files/nvim/lua/settings/lazy/plugins/nvim-treesitter.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvim-treesitter.lua b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvim-treesitter.lua index 38a408f..805b0b2 100644 --- a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvim-treesitter.lua +++ b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvim-treesitter.lua @@ -43,7 +43,7 @@ return { }, -- Install parsers synchronously (only applied to `ensure_installed`) - sync_install = false, + sync_install = true, -- Automatically install missing parsers when entering buffer -- Recommendation: set to false if you don"t have `tree-sitter` CLI installed locally @@ -57,7 +57,7 @@ return { }, highlight = { - enable = true, + enable = false, -- Setting this to true will run `:h syntax` and tree-sitter at the same time. -- Set this to `true` if you depend on "syntax" being enabled (like for indentation). -- Using this option may slow down your editor, and you may see some duplicate highlights.