diff options
author | Max Christian Pohle | 2017-07-07 07:39:49 +0200 |
---|---|---|
committer | Max Christian Pohle | 2017-07-07 07:39:49 +0200 |
commit | 75559a5e7f9e91fc349a956bf1d08f5ac06d1e9a (patch) | |
tree | e46eca254243dec9a93a42b8b17772b070c063f4 | |
parent | c6a570a4bd847e9b1ef20ac2cf7c3c091c896224 (diff) | |
download | vim-75559a5e7f9e91fc349a956bf1d08f5ac06d1e9a.tar.bz2 vim-75559a5e7f9e91fc349a956bf1d08f5ac06d1e9a.zip |
Removed code-folding by default, made carret blink
-rw-r--r-- | vimrc-full | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | " vim: tabstop=2 softtabstop=2 shiftwidth=2 textwidth=160 iskeyword+=\: | 1 | set" vim: tabstop=2 softtabstop=2 shiftwidth=2 textwidth=160 iskeyword+=\: |
2 | 2 | ||
3 | set encoding=utf-8 | " set up vim's cosole encoding (not file encoding, for which there is fileencoding=) | 3 | set encoding=utf-8 | " set up vim's cosole encoding (not file encoding, for which there is fileencoding=) |
4 | set t_Co=256 | " required on some ssh sessions | 4 | set t_Co=256 | " required on some ssh sessions |
@@ -26,6 +26,7 @@ set concealcursor=nc | " limits the display of concealed text to normal | |||
26 | set conceallevel=2 | " replace escaped chars by their utf-8 representation (useful for LaTeX) | 26 | set conceallevel=2 | " replace escaped chars by their utf-8 representation (useful for LaTeX) |
27 | set confirm | " asks 'do you want to save?' | 27 | set confirm | " asks 'do you want to save?' |
28 | set cpoptions+=P | " makes :w filename set the current buffer to filename | 28 | set cpoptions+=P | " makes :w filename set the current buffer to filename |
29 | set guicursor=a:block-blinkon100 | ||
29 | set hidden | " allows switiching buffers even if the current buffer contains changes (displays +) | 30 | set hidden | " allows switiching buffers even if the current buffer contains changes (displays +) |
30 | set hlsearch | " highlights all search matches (not as performant!) | 31 | set hlsearch | " highlights all search matches (not as performant!) |
31 | set ignorecase smartcase | " search with ignorecase by default, but use case sensitive search when one captical char is contained | 32 | set ignorecase smartcase | " search with ignorecase by default, but use case sensitive search when one captical char is contained |
@@ -36,7 +37,7 @@ set mousemodel=popup | " only in gvim: right click opens a popup-menu | |||
36 | set nocursorcolumn | " turn visual cursor column off (improves performance) | 37 | set nocursorcolumn | " turn visual cursor column off (improves performance) |
37 | set nocursorline | " turn visual cursor line off (improves performance) | 38 | set nocursorline | " turn visual cursor line off (improves performance) |
38 | set nrformats+=alpha | " allows CTRL-A & CTRL-X to increment and decrement letters, not just numbers | 39 | set nrformats+=alpha | " allows CTRL-A & CTRL-X to increment and decrement letters, not just numbers |
39 | set foldenable | " explicitly enable code folding, since this config makes it usable | 40 | set nofoldenable | " disable folding, because we have zi to toggle foldenable :) |
40 | set exrc | " enable exrc, a specific .exrc per project, which can contain usual .vimrc commands | 41 | set exrc | " enable exrc, a specific .exrc per project, which can contain usual .vimrc commands |
41 | set noequalalways | " do not evenly size windows when opening new or closing old | 42 | set noequalalways | " do not evenly size windows when opening new or closing old |
42 | set foldmethod=syntax | " foldlevel: syntax, indent, manual | 43 | set foldmethod=syntax | " foldlevel: syntax, indent, manual |