this repo has no description
1" Softwrap
2set wrap " Wrap text
3set linebreak " Wrap at word breaks
4set nolist " List would disable wrap
5set textwidth=0 " Use the full screen
6set wrapmargin=0 " Wrap at the right margin
7
8" Highlight yaml frontmatter
9unlet b:current_syntax
10syntax include @Yaml syntax/yaml.vim
11syntax region yamlFrontmatter start=/\%^---$/ end=/^---$/ keepend contains=@Yaml