vim-settings/neovim/ftplugin/markdown.vim
ViViDboarder fc016bd7b8 WIP: Made a few changes
This could use a broader refactor similar to lazyvim that takes advantage of opt merging
2024-07-19 13:16:51 -07:00

11 lines
286 B
VimL

" 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
" Format frontmatter as YAML
let g:vim_markdown_frontmatter = 1
call textobj#sentence#init()