Added org bullets for prettier org.
This commit is contained in:
parent
c5e43df9ad
commit
2aa125e814
2 changed files with 13 additions and 7 deletions
|
|
@ -2,7 +2,7 @@
|
|||
require('orgmode').setup_ts_grammar()
|
||||
|
||||
-- Treesitter configuration
|
||||
require('nvim-treesitter.configs').setup {
|
||||
require('nvim-treesitter.configs').setup({
|
||||
-- If TS highlights are not enabled at all, or disabled via `disable` prop,
|
||||
-- highlighting will fallback to default Vim syntax highlighting
|
||||
highlight = {
|
||||
|
|
@ -12,7 +12,7 @@ require('nvim-treesitter.configs').setup {
|
|||
additional_vim_regex_highlighting = { 'org' },
|
||||
},
|
||||
ensure_installed = { 'org' }, -- Or run :TSUpdate org
|
||||
}
|
||||
})
|
||||
|
||||
require('orgmode').setup({
|
||||
org_agenda_files = { '~/.vimwiki/org/**.org' },
|
||||
|
|
@ -25,7 +25,9 @@ require('cmp').setup({
|
|||
}
|
||||
})
|
||||
|
||||
require("orgWiki").setup {
|
||||
require("orgWiki").setup({
|
||||
wiki_path = { "~/.vimwiki/org/" },
|
||||
diary_path = "~/.vimwiki/org/diary/",
|
||||
}
|
||||
})
|
||||
|
||||
require('org-bullets').setup()
|
||||
|
|
|
|||
|
|
@ -70,6 +70,10 @@ local plugins = {
|
|||
{ 'nvim-treesitter/nvim-treesitter', lazy = true },
|
||||
},
|
||||
},
|
||||
{
|
||||
'akinsho/org-bullets.nvim',
|
||||
dependencies = { { 'nvim-orgmode/orgmode' } },
|
||||
},
|
||||
{
|
||||
"ranjithshegde/orgWiki.nvim",
|
||||
dependencies = { { 'nvim-orgmode/orgmode' } },
|
||||
|
|
|
|||
Loading…
Reference in a new issue