Update vim markdown & latex
parent
497261b48b
commit
92aeb5d195
6
.vimrc
6
.vimrc
|
@ -100,8 +100,9 @@ Plug 'pangloss/vim-javascript', { 'for': ['javascript', 'javascript.jsx'] }
|
||||||
Plug 'leafgarland/typescript-vim', { 'for': ['typescript', 'typescript.tsx'] }
|
Plug 'leafgarland/typescript-vim', { 'for': ['typescript', 'typescript.tsx'] }
|
||||||
Plug 'peitalin/vim-jsx-typescript', { 'for': ['typescript.tsx'] }
|
Plug 'peitalin/vim-jsx-typescript', { 'for': ['typescript.tsx'] }
|
||||||
Plug 'evanleck/vim-svelte', {'branch': 'main'}
|
Plug 'evanleck/vim-svelte', {'branch': 'main'}
|
||||||
" LaTeX
|
" LaTeX & markdown
|
||||||
Plug 'lervag/vimtex'
|
Plug 'lervag/vimtex'
|
||||||
|
Plug 'vim-pandoc/vim-pandoc-syntax'
|
||||||
" TidalCycles
|
" TidalCycles
|
||||||
Plug 'supercollider/scvim'
|
Plug 'supercollider/scvim'
|
||||||
Plug 'tidalcycles/vim-tidal'
|
Plug 'tidalcycles/vim-tidal'
|
||||||
|
@ -146,6 +147,9 @@ let g:tex_flavor = 'latex'
|
||||||
let g:tex_conceal='abdmg'
|
let g:tex_conceal='abdmg'
|
||||||
let g:vimtex_quickfix_mode=0
|
let g:vimtex_quickfix_mode=0
|
||||||
|
|
||||||
|
" Markdown
|
||||||
|
au FileType markdown setl tw=80 fo+=t " Wrap markdown to 80 characters
|
||||||
|
|
||||||
" Comments
|
" Comments
|
||||||
xm <leader>c <Plug>Commentary
|
xm <leader>c <Plug>Commentary
|
||||||
nm <leader>c <Plug>Commentary
|
nm <leader>c <Plug>Commentary
|
||||||
|
|
Loading…
Reference in New Issue