From: Lukas Krickl Date: Sun, 13 Jul 2025 11:24:23 +0000 (+0200) Subject: disabled treesitter highlighting X-Git-Url: https://git.krickl.dev/?a=commitdiff_plain;h=733eb7a1c715202a7cf3bd7529ee849fb7ade12f;p=dotfiles%2F.git disabled treesitter highlighting --- 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, }