vim-settings/neovim/ftplugin/markdown.vim

9 lines
256 B
VimL
Raw Normal View History

" Set Markdown indent to 2 so single indented text doesn't become 'code'
set shiftwidth=2
" From plasticboy/vim-markdown via sheerun/vim-polyglot
let g:vim_markdown_new_list_item_indent = 0
2021-09-28 00:45:04 +00:00
" Format frontmatter as YAML
let g:vim_markdown_frontmatter = 1