From 0e68dd36508d8129399627571a54d0c9e3562f89 Mon Sep 17 00:00:00 2001 From: qwjyh Date: Wed, 9 Apr 2025 05:20:51 +0900 Subject: [PATCH] refactor(nvim): remove treesitter setup from orgmode setup it is no longer in the example (maybe conflicted?) --- dotfiles/neovim/init.lua | 9 --------- 1 file changed, 9 deletions(-) diff --git a/dotfiles/neovim/init.lua b/dotfiles/neovim/init.lua index f3d4224..a33a0db 100644 --- a/dotfiles/neovim/init.lua +++ b/dotfiles/neovim/init.lua @@ -234,15 +234,6 @@ require('lazy').setup({ }, -- event = 'VeryLazy', -- doesn't work with existing comp and treesitter config = function() - -- Setup treesitter - require('nvim-treesitter.configs').setup({ - highlight = { - enable = true, - additional_vim_regex_highlighting = { 'org' }, - }, - ensure_installed = { 'org' }, - }) - -- Setup orgmode require('orgmode').setup({ org_agenda_files = '~/orgfiles/**/*',