From 1d0b860dda915ed5fdbc5db295df60f24b6b74df Mon Sep 17 00:00:00 2001 From: jdhao Date: Wed, 1 Jan 2020 13:14:48 +0800 Subject: [PATCH] Add firenvim --- plugins.vim | 9 +++++++++ 1 file changed, 9 insertions(+) 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 "}} "}