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