Use indent-based folding and remove FastFold

This commit is contained in:
Kevin MacMartin 2022-04-19 13:55:53 -04:00
parent 178e89e755
commit 1a387d2a98
4 changed files with 1 additions and 6 deletions

3
.gitmodules vendored
View file

@ -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

View file

@ -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.

@ -1 +0,0 @@
Subproject commit e4a51e0f6763720ab1d1889e1ce3fa3beaaf00d3

View file

@ -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