Can't disable concealer #860
Answered
by
tamton-aquib
flamendless
asked this question in
Q&A
-
I have the following config: use {
"nvim-neorg/neorg",
config = function()
require("neorg").setup {
load = {
["core.defaults"] = {
config = {
disable = {
"core.concealer",
}
}
},
["core.concealer"] = {
config = {
folds = false,
},
},
},
}
end,
run = ":Neorg sync-parsers",
requires = "nvim-lua/plenary.nvim",
} however it does not disable concealer at all. |
Beta Was this translation helpful? Give feedback.
Answered by
tamton-aquib
May 9, 2023
Replies: 2 comments 3 replies
-
you doesn't |
Beta Was this translation helpful? Give feedback.
1 reply
-
you could remove or comment the concealer part from the config: use {
"nvim-neorg/neorg",
config = function()
require("neorg").setup {
load = {
["core.defaults"] = {
config = {
disable = {
"core.concealer",
}
}
},
-- ["core.concealer"] = {
-- config = {
-- folds = false,
-- },
-- },
},
}
end,
run = ":Neorg sync-parsers",
requires = "nvim-lua/plenary.nvim",
} or am i missing something? 🤔 |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
flamendless
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you could remove or comment the concealer part from the config:
or am i missing something? 🤔