some neorg updates
This commit is contained in:
parent
b33b0eecea
commit
0338d00fb5
1
init.lua
1
init.lua
@ -1,4 +1,5 @@
|
|||||||
vim.g.mapleader = ','
|
vim.g.mapleader = ','
|
||||||
|
vim.g.maplocalleader = ','
|
||||||
if not vim.g.vscode then
|
if not vim.g.vscode then
|
||||||
require('config.lazy')
|
require('config.lazy')
|
||||||
require('my_keymappings')
|
require('my_keymappings')
|
||||||
|
@ -38,7 +38,8 @@
|
|||||||
"neodev.nvim": { "branch": "main", "commit": "da1562e1e3df0e994ddc52cb4ba22376a5d7f2fc" },
|
"neodev.nvim": { "branch": "main", "commit": "da1562e1e3df0e994ddc52cb4ba22376a5d7f2fc" },
|
||||||
"neogen": { "branch": "main", "commit": "cb1f384df804c1bf729332c4f728253fe17962d4" },
|
"neogen": { "branch": "main", "commit": "cb1f384df804c1bf729332c4f728253fe17962d4" },
|
||||||
"neogit": { "branch": "master", "commit": "f0bd7c736cc242258f0fdce0029f3b6331fe952b" },
|
"neogit": { "branch": "master", "commit": "f0bd7c736cc242258f0fdce0029f3b6331fe952b" },
|
||||||
"neorg": { "branch": "main", "commit": "67c729f5493bda44a9a1165393cd21f90a3f2a9d" },
|
"neorg": { "branch": "main", "commit": "2745ee1371c1029171bb98f2d9fb258e688d2c20" },
|
||||||
|
"neorg-telescope": { "branch": "main", "commit": "1310d4aaefd8149c9839bbe1d5610e94389e2f0e" },
|
||||||
"neotest": { "branch": "master", "commit": "6fd61fe665381939a6d70eb08ef1959a10af369e" },
|
"neotest": { "branch": "master", "commit": "6fd61fe665381939a6d70eb08ef1959a10af369e" },
|
||||||
"neotest-python": { "branch": "master", "commit": "81d2265efac717bb567bc15cc652ae10801286b3" },
|
"neotest-python": { "branch": "master", "commit": "81d2265efac717bb567bc15cc652ae10801286b3" },
|
||||||
"nui.nvim": { "branch": "main", "commit": "9e3916e784660f55f47daa6f26053ad044db5d6a" },
|
"nui.nvim": { "branch": "main", "commit": "9e3916e784660f55f47daa6f26053ad044db5d6a" },
|
||||||
|
@ -1,19 +1,27 @@
|
|||||||
return {
|
return {
|
||||||
'nvim-neorg/neorg',
|
'nvim-neorg/neorg',
|
||||||
build = ':Neorg sync-parsers',
|
build = ':Neorg sync-parsers',
|
||||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
branch = 'main',
|
||||||
|
dependencies = {
|
||||||
|
'nvim-lua/plenary.nvim',
|
||||||
|
'nvim-neorg/neorg-telescope'
|
||||||
|
},
|
||||||
config = function()
|
config = function()
|
||||||
require('neorg').setup {
|
require('neorg').setup {
|
||||||
load = {
|
load = {
|
||||||
['core.defaults'] = {}, -- Loads default behaviour
|
['core.defaults'] = {}, -- Loads default behaviour
|
||||||
['core.concealer'] = {}, -- Adds pretty icons to your documents
|
['core.concealer'] = {}, -- Adds pretty icons to your documents
|
||||||
['core.dirman'] = { -- Manages Neorg workspaces
|
['core.dirman'] = { -- Manages Neorg workspaces
|
||||||
config = {
|
config = {
|
||||||
workspaces = {
|
workspaces = {
|
||||||
notes = '~/notes',
|
notes = '~/notes',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
['core.itero'] = {},
|
||||||
|
['core.promo'] = {},
|
||||||
|
['core.export.markdown'] = {},
|
||||||
|
['core.integrations.telescope'] = {},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user