Added yaml to Markdown fenced languages

This commit is contained in:
2024-02-22 16:51:20 -05:00
parent 36bf857053
commit 6f9fdab429

2
.vimrc
View File

@@ -32,7 +32,7 @@ syntax enable
filetype plugin on
" Native Markdown syntax highlighting for specified languages
let g:markdown_fenced_languages = ['html', 'python', 'sh', 'vim']
let g:markdown_fenced_languages = ['html', 'python', 'sh', 'vim', 'yaml']
" Open my personal helpfile
nmap <leader>h :e $HOME/.vim/vim-keys-help.md<CR>