TomZz
TomZz

Reputation: 101

Edit markdown files in Neovim

I use neovim and try to edit markdown files with neovim. I tried prosemd_lsp, marksman and remark_ls, but they all seemed to have one problem. When I typed such as - hello, then I type the <CR> key. It will turn into

- hello
??

(I used the ? to represent the space)

insted of the expected

- hello
-?

So, how should I config to get to what I want.

Upvotes: 1

Views: 1162

Answers (1)

LoneExile
LoneExile

Reputation: 187

try autolist.nvim

Automatic list continuation and formatting for neovim, powered by lua

Upvotes: 2

Related Questions