diff options
author | xyz <gky44px1999@gmail.com> | 2021-09-11 16:35:46 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2021-09-11 16:35:46 -0700 |
commit | 9a50b3d72c8e0a992733ba93495d0a585f3f3950 (patch) | |
tree | b686019985ab6ca9e912f92a27990e22761068ec /.config/nvim/init.vim | |
parent | 7d8255bdb7c953eea7e2384d3ca2deebf06e2dde (diff) |
surfingkeys default use firenvim, firenvim default must be invoke with hotkey
Diffstat (limited to '.config/nvim/init.vim')
-rw-r--r-- | .config/nvim/init.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index a7589777..caa8ea64 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -18,6 +18,9 @@ Plug 'fnune/base16-vim' "Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " We recommend updating the parsers on update call plug#end() +" next line must put below `Plug 'glacambre/firenvim'`, else if click github issue textarea, then click elsewhere, then click textarea, textarea will not be selected (no cursor in it), not sure why +let g:firenvim_config = { 'localSettings': { '.*': { 'takeover': 'never' } } } + " I use only one return for better readability function Autocmd_set_fenc() " need to test &modifiable for gO |