2022-08-08 13:02:04 +02:00
|
|
|
require('plugins')
|
|
|
|
|
2022-08-08 11:07:10 +02:00
|
|
|
-- org
|
2022-08-08 13:57:38 +02:00
|
|
|
use {
|
|
|
|
'https://github.com/nvim-orgmode/orgmode',
|
|
|
|
config = function()
|
|
|
|
require('orgmode').setup{}
|
|
|
|
require('orgmode').setup_ts_grammar()
|
|
|
|
require'nvim-treesitter.configs'.setup {
|
|
|
|
highlight = {
|
|
|
|
enable = true,
|
|
|
|
additional_vim_regex_highlighting = {'org'}
|
|
|
|
},
|
|
|
|
ensure_installed = {'org'},
|
|
|
|
}
|
|
|
|
end
|
2022-08-08 11:07:10 +02:00
|
|
|
}
|