-
Video: 1.mp4Is there a way to get the same behavior for both (the file opens folded)? ❯ nvim -v
NVIM v0.8.2
Build type: Release
LuaJIT 2.1.0-beta My Neorg config: return {
"nvim-neorg/neorg",
build = ":Neorg sync-parsers",
dependencies = "nvim-lua/plenary.nvim",
config = function()
require("neorg").setup({
load = {
["core.defaults"] = {},
["core.clipboard"] = {},
["core.clipboard.code-blocks"] = {},
["core.norg.completion"] = {
config = { engine = "nvim-cmp" },
},
["core.norg.concealer"] = {
config = {
dim_code_blocks = {
enabled = true,
conceal = true,
content_only = true,
-- Will adapt based on the `conceallevel` option.
-- If `conceallevel` > 0, then only the content will be dimmed,
-- else the whole code block will be dimmed.
adaptive = true,
},
icon_preset = "diamond",
},
},
},
})
end,
} My Telescope config: return {
"nvim-telescope/telescope.nvim",
dependencies = "nvim-lua/plenary.nvim",
config = function()
require("telescope").setup({
defaults = {
prompt_prefix = "🔍 ",
selection_caret = " ",
vimgrep_arguments = {
"rg",
"--color=auto",
"--column",
"--hidden",
"--line-number",
"--no-heading",
"--smart-case",
"--with-filename",
},
},
})
end,
} Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
jghauser
Jan 15, 2023
Replies: 1 comment 1 reply
-
Once upon a time I opened this issue with telescope, and maybe that's the problem you're seeing? Although if you're only seeing it with |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
xfzv
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Once upon a time I opened this issue with telescope, and maybe that's the problem you're seeing? Although if you're only seeing it with
.norg
files then maybe not. Just thought I'd mention it here (also because the workarounds suggested towards the end work quite well!).