xaizek / dotvim (License: Unspecified) (since 2018-12-07)
Vim configuration and plugins.
Commit 2fd60b20613d6827dc1cd1d4a1d09a1513ea053c

Reduce 'history' to 1000
Don't know what happened (in Vim's code? my viminfo? or change of some
settings?), but 10000 entries of search seem to negatively affect Vim's
startup and shutdown time. 1000 should be enough and it keeps Vim
swift.
Author: xaizek
Author date (UTC): 2023-12-24 22:44
Committer name: xaizek
Committer date (UTC): 2023-12-24 22:44
Parent(s): 9ced4c0318d21ee30b70cd90d43629a6f6a13b8e
Signing key: 99DC5E4DB05F6BE2
Tree: b2ae54d6bf2e30991e26a39eece2367a2e77a062
File Lines added Lines deleted
vimrc 2 2
File vimrc changed (mode: 100644) (index 5c93ebd..da88600)
... ... nnoremap <silent> <leader>m :2match SecondaryHighlight /<c-r>//<cr>
553 553 " clear marking " clear marking
554 554 nnoremap <silent> <leader>cm :2match none<cr> nnoremap <silent> <leader>cm :2match none<cr>
555 555
556 " increase history size
557 set history=10000
556 " increase history size (don't make it 10000, Vim becomes slow to start/quit)
557 set history=1000
558 558
559 559 " correct encoding detection " correct encoding detection
560 560 set fileencodings=ucs-bom,utf-8,default,cp1251,cp866 set fileencodings=ucs-bom,utf-8,default,cp1251,cp866
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/dotvim

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/dotvim

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master