remove comments, add vim-markdown

This commit is contained in:
James Dixon 2020-11-06 14:13:15 -05:00
parent d87a201074
commit 19cb5ff0bf

View File

@ -31,14 +31,14 @@ call plug#begin(pluginDir)
" linting and lsp " linting and lsp
Plug 'w0rp/ale' Plug 'w0rp/ale'
" Plug 'prabirshrestha/vim-lsp'
" Plug 'mattn/vim-lsp-settings'
" extra language plugins " extra language plugins
"go "go
Plug 'fatih/vim-go' Plug 'fatih/vim-go'
"html "html
Plug 'mattn/emmet-vim' Plug 'mattn/emmet-vim'
"markdown
Plug 'plasticboy/vim-markdown'
" other useful things " other useful things
"editorconfig "editorconfig
@ -86,8 +86,9 @@ highlight clear SignColumn
"vim-markdown "vim-markdown
let g:vim_markdown_folding_disabled = 1 let g:vim_markdown_folding_disabled = 1
let g:vim_markdown_no_default_key_mappings = 1
let g:vim_markdown_toc_autofit = 1 let g:vim_markdown_toc_autofit = 1
let g:vim_markdown_conceal = 0
let g:vim_markdown_frontmatter = 1
"vim-emmet "vim-emmet
let g:user_emmet_install_global = 0 let g:user_emmet_install_global = 0