remove org mode....

This commit is contained in:
Christian Nieves
2022-12-01 01:34:02 +00:00
parent d3035d8dee
commit 74e6536138
3 changed files with 0 additions and 12 deletions

View File

@ -99,7 +99,6 @@ cmp.setup({
sources = {
{ name = "nvim_lua" },
{ name = 'orgmode' },
{ name = "nvim_lsp" },
{ name = "path" },
{ name = "vim_vsnip" },

View File

@ -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',

View File

@ -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"},
},