1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Add firenvim

This commit is contained in:
jdhao
2020-01-01 13:14:48 +08:00
committed by GitHub
parent 4c7364b84f
commit 1d0b860dda

View File

@@ -301,6 +301,9 @@ Plug 'skywind3000/asyncrun.vim'
" Another asynchronous plugin
" Plug 'tpope/vim-dispatch'
Plug 'cespare/vim-toml'
" Edit text area in browser using nvim
Plug 'glacambre/firenvim', { 'do': { _ -> firenvim#install(0) } }
call plug#end()
"}}
"}
@@ -855,5 +858,11 @@ if has('win32')
" Command output encoding for Windows
let g:asyncrun_encs = 'gbk'
endif
""""""""""""""""""""""""""""""firenvim settings""""""""""""""""""""""""""""""
augroup firenvim
autocmd!
autocmd BufEnter github.com_*.txt set filetype=markdown
augroup END
"}}
"}