1
0
Fork 0

nvim: orgmode: remove nvim-treesitter dependency

This commit is contained in:
tea 2024-05-09 11:25:13 +02:00
parent 3efb1e9a03
commit 2a18787a95
No known key found for this signature in database
2 changed files with 1 additions and 3 deletions

View File

@ -15,7 +15,6 @@ require('ts_context_commentstring').setup({
vim.g.skip_ts_context_commentstring_module = true; -- disable backwards compat
require('orgmode').setup {}
require('orgmode').setup_ts_grammar()
require('which-key').register({ ['<Leader>o'] = { name = 'Orgmode' } })
local ffgroup = vim.api.nvim_create_augroup('config_ff', { clear = true })

View File

@ -29,8 +29,7 @@ require('packer').startup({
}
use {
'https://github.com/nvim-orgmode/orgmode',
tag = '*',
requires = 'https://github.com/nvim-treesitter/nvim-treesitter'
tag = '*'
}
use {
'https://github.com/JoosepAlviste/nvim-ts-context-commentstring',