-
I know this is a different repo, but it's related (I wouldn't be using lists if not for wiki.vim). It also feels like a "stupid" question. I'm trying to enable lists for all Markdown files, using {
'lervag/lists.vim',
init = function()
vim.g.lists_filetypes = {
'markdown',
'mkd'
}
end
}, |
Beta Was this translation helpful? Give feedback.
Answered by
lervag
Apr 30, 2024
Replies: 1 comment 8 replies
-
I think the problem may be that I've used a stupid name for the option. The list is a list of file extensions, not a list of filetypes. Thus, if your markdown files are named |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Are you using this config now?
After doing
<leader>w<leader>w
- what's the output of:autocmd lists
?