diff options
| author | jdhao <jdhao@hotmail.com> | 2020-01-01 13:14:48 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-01 13:14:48 +0800 |
| commit | 1d0b860dda915ed5fdbc5db295df60f24b6b74df (patch) | |
| tree | 0ea75abbc42497498205a839ce8a4152539ed903 /plugins.vim | |
| parent | 4c7364b84fa356ba4c15254b275d5d41e306820f (diff) | |
Add firenvim
Diffstat (limited to 'plugins.vim')
| -rw-r--r-- | plugins.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins.vim b/plugins.vim index 232684e..51fb935 100644 --- a/plugins.vim +++ b/plugins.vim @@ -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 "}} "} |
