Add neorg plugin

This commit is contained in:
Simo Soini 2025-06-05 16:37:38 +03:00
parent ea5c72636c
commit b719c4d2ac
2 changed files with 27 additions and 0 deletions

View File

@ -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

View File

@ -27,6 +27,7 @@ return {
rule2('{', '%', '}', 'html')
rule2('{%', ' ', '%}', 'html')
rule2('{', ':', '}', 'norg')
rule2('(', ' ', ')')
rule2('[', ' ', ']')
rule2('{', ' ', '}')