Skip to content

Commit

Permalink
adding neorg
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiago-Assis-T committed Aug 5, 2023
1 parent 2677b23 commit 46e5d05
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
1 change: 1 addition & 0 deletions lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"mason-lspconfig.nvim": { "branch": "main", "commit": "e86a4c84ff35240639643ffed56ee1c4d55f538e" },
"mason-tool-installer.nvim": { "branch": "main", "commit": "031903fefbf59371502092ef9e22cab9161d90ba" },
"mason.nvim": { "branch": "main", "commit": "fe9e34a9ab4d64321cdc3ecab4ea1809239bb73f" },
"neorg": { "branch": "main", "commit": "0b3df8633cc1cbb3ffd6f34d4e9073fd6f5083ab" },
"nvim-cmp": { "branch": "main", "commit": "c4e491a87eeacf0408902c32f031d802c7eafce8" },
"nvim-lint": { "branch": "master", "commit": "0cd1ac2801303470bf9ec0164d00f45dc901c83f" },
"nvim-lspconfig": { "branch": "master", "commit": "b6091272422bb0fbd729f7f5d17a56d37499c54f" },
Expand Down
1 change: 1 addition & 0 deletions lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ require('plugins.lsp')
require('plugins.nvim-cmp')
require('plugins.gitsings')
require('plugins.telescope')
require('plugins.neorg')
9 changes: 7 additions & 2 deletions lua/plugins/lazy-nvim.lua
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@ require('lazy').setup({
},
},
{
"nvim-telescope/telescope-file-browser.nvim",
dependencies = { "nvim-telescope/telescope.nvim", "nvim-lua/plenary.nvim" }
'nvim-telescope/telescope-file-browser.nvim',
dependencies = { 'nvim-telescope/telescope.nvim', 'nvim-lua/plenary.nvim' },
},
{
'nvim-neorg/neorg',
build = ':Neorg sync-parsers',
dependencies = { 'nvim-lua/plenary.nvim' },
},
})
13 changes: 13 additions & 0 deletions lua/plugins/neorg.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
require('neorg').setup({
load = {
['core.defaults'] = {}, -- Loads default behaviour
['core.concealer'] = {}, -- Adds pretty icons to your documents
['core.dirman'] = { -- Manages Neorg workspaces
config = {
workspaces = {
notes = '~/Notes',
},
},
},
},
})

0 comments on commit 46e5d05

Please sign in to comment.