diff options
author | Chris <[email protected]> | 2021-03-18 02:12:27 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-18 02:12:27 -0400 |
commit | 9d03ba32ad62c191693d8bd6b5b46b19f9d3d67b (patch) | |
tree | 81a2791db00fd2a55290b473e1589cdd76025051 | |
parent | edabd423591ed9b92776484cae328000e627ba99 (diff) |
remove far
-rw-r--r-- | lua/nv-far/init.lua | 66 | ||||
-rw-r--r-- | lua/plugins.lua | 15 |
2 files changed, 7 insertions, 74 deletions
diff --git a/lua/nv-far/init.lua b/lua/nv-far/init.lua deleted file mode 100644 index 818e7a96..00000000 --- a/lua/nv-far/init.lua +++ /dev/null @@ -1,66 +0,0 @@ -vim.cmd([[ -set lazyredraw " improve scrolling performance when navigating through large results - -let g:far#window_width=30 -" Use %:p with buffer option only -let g:far#file_mask_favorites=['%:p', '**/*.*', '**/*.js', '**/*.py', '**/*.java', '**/*.css', '**/*.html', '**/*.vim', '**/*.cpp', '**/*.c', '**/*.h', ] -let g:far#window_min_content_width=30 -let g:far#enable_undo=1 - -" let g:far#ignore_files=['$HOME/.config/nvim/utils/farignore'] -" let g:far#ignore_files=['node_modules/'] - -" Below are the default mappings and corresponding variable names in - -" x v_x - Exclude item under the cursor. - -" i v_i - Include item under the cursor. - -" t v_t - Toggle item exclusion under the cursor. - -" f v_f - Smartly toggle item exclusion under the cursor: exclude all items when all are excluded, otherwise exclude all items. - -" X - Exclude all items. - -" I - Include all items. - -" T - Toggle exclusion for all items. - -" F - Smartly toggle exclusion for all items: include all items when all are excluded, otherwise exclude all items. - -" <CR> - Jump to the source code of the item under the cursor. See |far-jump| - -" p - Open preview window (if not) and scroll to the item under the cursor. See |far-preview| - -" P - Close preview window. See |far-preview| - -" CTRL-K - Scroll preview window up (if open). See |far-preview|, |g:far#preview_window_scroll_step| - -" CTRL-J - Scroll preview window down (if open). See |far-preview|, |g:far#preview_window_scroll_step| - -" zo - Expand node under the cursor. - -" zc - Collapse node under the cursor. - -" za - Toggle node expanding under the cursor. - -" zs - Smartly toggle exclusion for all nodes: expand all nodes when all are collapsed, otherwise collapse all nodes. - -" zr v_zr - Expand all nodes. - -" zm v_zm - Collapse all nodes. - -" zA v_zA - Toggle exclusion for all nodes. - -" zS v_zS - Smartly toggle exclusion for all nodes: expand all nodes when all are collapsed, otherwise collapse all nodes. - -" s v_s - Execute |:Fardo|<CR>, to replace all included items. - -" u v_s - Execute |:Farundo|<CR>, to undo the last replacement by |:Fardo|. - -" U v_U - Execute |:Farundo| --all=1<CR>, to undo all replacements by |:Fardo|. For param '--all=' see |farundo-params|. - -" q v_q - Close searching result buffer and its preview buffer (if exists) - -]]) - diff --git a/lua/plugins.lua b/lua/plugins.lua index bb1d61e5..27fd6d93 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -98,23 +98,22 @@ return require('packer').startup(function(use) use 'turbio/bracey.vim' use 'AndrewRadev/tagalong.vim' use 'alvan/vim-closetag' - use { - 'glacambre/firenvim', - run = function() - vim.fn['firenvim#install'](1) - end - } use 'liuchengxu/vim-which-key' use 'voldikss/vim-floaterm' use 'liuchengxu/vista.vim' use 'terrortylor/nvim-comment' use 'bfredl/nvim-miniyank' - use 'brooth/far.vim' use 'junegunn/goyo.vim' use 'andymass/vim-matchup' - use 'tpope/vim-sleuth' use 'phaazon/hop.nvim' use 'gennaro-tedesco/nvim-jqx' -- use 'RRethy/vim-illuminate' -- use 'b3nj5m1n/kommentary' + -- use 'tpope/vim-sleuth' + -- use { + -- 'glacambre/firenvim', + -- run = function() + -- vim.fn['firenvim#install'](1) + -- end + -- } end) |