Add neorg plugin
This commit is contained in:
parent
ea5c72636c
commit
b719c4d2ac
|
|
@ -48,6 +48,32 @@ return {
|
|||
end,
|
||||
},
|
||||
|
||||
{
|
||||
'nvim-neorg/neorg',
|
||||
lazy = false,
|
||||
version = '*',
|
||||
config = function()
|
||||
require('neorg').setup {
|
||||
load = {
|
||||
['core.defaults'] = {},
|
||||
['core.concealer'] = {},
|
||||
['core.dirman'] = {
|
||||
config = {
|
||||
workspaces = {
|
||||
notes = '~/notes',
|
||||
},
|
||||
default_workspace = 'notes',
|
||||
},
|
||||
},
|
||||
['core.summary'] = {},
|
||||
},
|
||||
}
|
||||
|
||||
vim.wo.foldlevel = 99
|
||||
vim.wo.conceallevel = 2
|
||||
end,
|
||||
},
|
||||
|
||||
-- INFO: Previously used, now disabled plugins
|
||||
|
||||
-- Navigation integration for tmux
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ return {
|
|||
|
||||
rule2('{', '%', '}', 'html')
|
||||
rule2('{%', ' ', '%}', 'html')
|
||||
rule2('{', ':', '}', 'norg')
|
||||
rule2('(', ' ', ')')
|
||||
rule2('[', ' ', ']')
|
||||
rule2('{', ' ', '}')
|
||||
|
|
|
|||
Loading…
Reference in New Issue