Closed norbeyandresg closed 3 months ago
This is part of the some features will not work
if you're using neovim < 0.10.0
.
The implementation for the left
aligned language hint relies on inline
extmarks which would cause an error for you.
What is kind of interesting is that the right
aligned language hint does not use inline
extmarks since it does not have to worry about shifting text.
So if you add the following to your config:
require("render-markdown").setup({
code = {
position = 'right',
},
})
You'll get the language hint, though maybe not where you would prefer.
Btw I wouldn't add both echasnovski/mini.nvim
& echasnovski/mini.icons
as dependencies, since it's just not necessary.
Either one on its own is sufficient.
Neovim version (nvim -v)
0.9.5
Operating system
MacOs
Terminal emulator / GUI
Alacrity
Describe the bug
Code block shows icon in the sign column but not in the code block header
Expected behavior
icon and language shows as a code block title
Healthcheck output
Plugin configuration
my lazy config
Confirmations
Additional information
No response