diff --git a/.gitmodules b/.gitmodules index bb0e441..5e2f0ca 100644 --- a/.gitmodules +++ b/.gitmodules @@ -43,9 +43,6 @@ [submodule "vim/bundle/tabular"] path = vim/bundle/tabular url = https://github.com/godlygeek/tabular -[submodule "vim/bundle/incsearch.vim"] - path = vim/bundle/incsearch.vim - url = https://github.com/haya14busa/incsearch.vim [submodule "vim/bundle/vim-unimpaired"] path = vim/bundle/vim-unimpaired url = https://github.com/tpope/vim-unimpaired.git diff --git a/readme.md b/readme.md index 0c4eb2c..a3bd7d5 100644 --- a/readme.md +++ b/readme.md @@ -156,7 +156,6 @@ For a complete list of mappings specific to **darkcloud-vimconfig**, check the l * [nvim-yarp](https://github.com/roxma/nvim-yarp): Yet Another Remote Plugin Framework for Neovim * [vim-hug-neovim-rpc](https://github.com/roxma/vim-hug-neovim-rpc): A compatibility layer for neovim rpc client working on vim8 * [editorconfig-vim](https://github.com/editorconfig/editorconfig-vim): EditorConfig plugin for Vim that auto-configures certain settings when a .editorconfig file is present -* [incsearch.vim](https://github.com/haya14busa/incsearch.vim): Improved incremental searching for Vim. * [lightline.vim](https://github.com/itchyny/lightline.vim): A light and configurable statusline/tabline for Vim. * [lightline-ale](https://github.com/maximbaz/lightline-ale): Provides ALE indicator for the lightline vim plugin. * [ReplaceWithRegister](https://github.com/vim-scripts/ReplaceWithRegister): Replace text with the contents of a register (for paste+replace without writing over the buffer). diff --git a/vim/bundle/incsearch.vim b/vim/bundle/incsearch.vim deleted file mode 160000 index c83de6d..0000000 --- a/vim/bundle/incsearch.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c83de6d1ac31d173d7c3ffee0ad61dc643ee4f08 diff --git a/vim/config/plugins/incsearch.vim b/vim/config/plugins/incsearch.vim deleted file mode 100644 index f1a54ff..0000000 --- a/vim/config/plugins/incsearch.vim +++ /dev/null @@ -1,7 +0,0 @@ -"use incsearch in place of the default search -map / (incsearch-forward) -map ? (incsearch-backward) -map g/ (incsearch-stay) - -"n and N behavioru is consistant -let g:incsearch#consistent_n_direction = 1