From 74e65361389320db06acaba4939d770a9d9f24b1 Mon Sep 17 00:00:00 2001 From: Christian Nieves Date: Thu, 1 Dec 2022 01:34:02 +0000 Subject: [PATCH] remove org mode.... --- vim/.vim/lua/lsp.lua | 1 - vim/.vim/lua/plugins.lua | 5 ----- vim/.vim/lua/treesitter.lua | 6 ------ 3 files changed, 12 deletions(-) diff --git a/vim/.vim/lua/lsp.lua b/vim/.vim/lua/lsp.lua index 01cbf2f..35c73d0 100644 --- a/vim/.vim/lua/lsp.lua +++ b/vim/.vim/lua/lsp.lua @@ -99,7 +99,6 @@ cmp.setup({ sources = { { name = "nvim_lua" }, - { name = 'orgmode' }, { name = "nvim_lsp" }, { name = "path" }, { name = "vim_vsnip" }, diff --git a/vim/.vim/lua/plugins.lua b/vim/.vim/lua/plugins.lua index 1fb29c2..f844258 100644 --- a/vim/.vim/lua/plugins.lua +++ b/vim/.vim/lua/plugins.lua @@ -21,11 +21,6 @@ require('packer').startup(function(use) use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' } - use { - 'nvim-orgmode/orgmode', - config = [[ require('orgconfig') ]] - } - -- Undo tree use { 'mbbill/undotree', diff --git a/vim/.vim/lua/treesitter.lua b/vim/.vim/lua/treesitter.lua index 0b3098e..7d59a41 100644 --- a/vim/.vim/lua/treesitter.lua +++ b/vim/.vim/lua/treesitter.lua @@ -1,6 +1,3 @@ --- Load custom treesitter grammar for org filetype -require('orgmode').setup_ts_grammar() - require('nvim-treesitter.configs').setup { -- A list of parser names, or "all" -- ensure_installed = { "c", "lua", "vim", "java", "kotlin"}, @@ -12,9 +9,6 @@ require('nvim-treesitter.configs').setup { highlight = { -- `false` will disable the whole extension enable = true, - -- Required for spellcheck, some LaTex highlights and - -- code block highlights that do not have ts grammar - additional_vim_regex_highlighting = {'org'}, disable = {"java"}, },