19 lines
502 B
Lua
19 lines
502 B
Lua
require('plugins')
|
|
|
|
-- org
|
|
packer.use {
|
|
'https://github.com/nvim-orgmode/orgmode',
|
|
requires = 'https://github.com/nvim-treesitter/nvim-treesitter',
|
|
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
|
|
}
|