From 733eb7a1c715202a7cf3bd7529ee849fb7ade12f Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Sun, 13 Jul 2025 13:24:23 +0200 Subject: [PATCH] disabled treesitter highlighting --- nvim/init.vim | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nvim/init.vim b/nvim/init.vim index 5b3e121..69d0a9c 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -1,4 +1,8 @@ " colorscheme vim + +" Disable syntax highlighting +" To enable it comment out this line +" and set hightlight enable to true in treesitter syntax off " timeout between commands @@ -131,7 +135,7 @@ vim.opt.runtimepath:append(ts_parser) require'nvim-treesitter.configs'.setup { highlight = { - enable = true, + enable = false, }, parser_install_dir = ts_parser, } -- 2.30.2