From 1a387d2a988a4e75dc8f5de232cedb1617593639 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Tue, 19 Apr 2022 13:55:53 -0400 Subject: [PATCH] Use indent-based folding and remove FastFold --- .gitmodules | 3 --- README.md | 1 - vim/bundle/FastFold | 1 - vim/config/settings.vim | 2 +- 4 files changed, 1 insertion(+), 6 deletions(-) delete mode 160000 vim/bundle/FastFold diff --git a/.gitmodules b/.gitmodules index 1a17cdc..6c4be7e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -70,9 +70,6 @@ [submodule "vim/bundle/ReplaceWithRegister"] path = vim/bundle/ReplaceWithRegister url = https://github.com/prurigro/ReplaceWithRegister.git -[submodule "vim/bundle/FastFold"] - path = vim/bundle/FastFold - url = https://github.com/Konfekt/FastFold.git [submodule "vim/bundle/editorconfig-vim"] path = vim/bundle/editorconfig-vim url = https://github.com/editorconfig/editorconfig-vim diff --git a/README.md b/README.md index 98f8b77..c889cb5 100644 --- a/README.md +++ b/README.md @@ -162,7 +162,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 -* [FastFold](https://github.com/Konfekt/FastFold): Speed up Vim by updating folds only when called-for. * [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. * [MatchTagAlways](https://github.com/Valloric/MatchTagAlways): A Vim plugin that always highlights the enclosing html/xml tags. diff --git a/vim/bundle/FastFold b/vim/bundle/FastFold deleted file mode 160000 index e4a51e0..0000000 --- a/vim/bundle/FastFold +++ /dev/null @@ -1 +0,0 @@ -Subproject commit e4a51e0f6763720ab1d1889e1ce3fa3beaaf00d3 diff --git a/vim/config/settings.vim b/vim/config/settings.vim index 1274606..c6538ef 100644 --- a/vim/config/settings.vim +++ b/vim/config/settings.vim @@ -68,7 +68,7 @@ syntax on "enable syntax highlighting set formatoptions=roqnl12 "how automatic formatting is to be done set diffopt=foldcolumn:0,filler "vimdiff default settings - set foldmethod=syntax foldcolumn=1 foldlevel=2 "fold layers 3 and deeper + set foldmethod=indent foldcolumn=1 foldlevel=2 "fold layers 3 and deeper set nofoldenable "disable folds by default set tw=80 "set the default text width to 80 when nothing overrides this set maxmempattern=10000 "increase the maximum amount of memory available for pattern matching