mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-17 23:46:26 +00:00
fc016bd7b8
This could use a broader refactor similar to lazyvim that takes advantage of opt merging
11 lines
286 B
VimL
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()
|