Replies: 2 comments 4 replies
-
|
Hi @winslowb - have a read through the thread for issue #690. The key thing for me was ensuring that nvim-treesitter was configured correctly, and that |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
can you try this code in nvim config vim.opt.conceallevel = 2 -- btw 0-3
vim.opt.concealcursor = "nc"
-- more info
-- :h conceallevel
-- :h concealcursor |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Howdy. I've not been successful using the neorg formatting. The exception being bullet.

I followed the packer config instructions
use {
'nvim-telescope/telescope.nvim',
tag = '0.1.0',
requries = { {'nvim-lua/plenary.nvim'} }
}
use {
"nvim-neorg/neorg",
config = function()
require('neorg').setup {
load = {
["core.defaults"] = {}, -- Loads default behaviour
["core.norg.concealer"] = {}, -- Adds pretty icons to your documents
["core.norg.dirman"] = { -- Manages Neorg workspaces
config = {
workspaces = {
notes = "~/notes",
},
},
},
},
}
Beta Was this translation helpful? Give feedback.
All reactions