From 75559a5e7f9e91fc349a956bf1d08f5ac06d1e9a Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Fri, 7 Jul 2017 07:39:49 +0200 Subject: Removed code-folding by default, made carret blink --- vimrc-full | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'vimrc-full') diff --git a/vimrc-full b/vimrc-full index 55acc93..4825863 100644 --- a/vimrc-full +++ b/vimrc-full @@ -1,4 +1,4 @@ -" vim: tabstop=2 softtabstop=2 shiftwidth=2 textwidth=160 iskeyword+=\: +set" vim: tabstop=2 softtabstop=2 shiftwidth=2 textwidth=160 iskeyword+=\: set encoding=utf-8 | " set up vim's cosole encoding (not file encoding, for which there is fileencoding=) set t_Co=256 | " required on some ssh sessions @@ -26,6 +26,7 @@ set concealcursor=nc | " limits the display of concealed text to normal set conceallevel=2 | " replace escaped chars by their utf-8 representation (useful for LaTeX) set confirm | " asks 'do you want to save?' set cpoptions+=P | " makes :w filename set the current buffer to filename +set guicursor=a:block-blinkon100 set hidden | " allows switiching buffers even if the current buffer contains changes (displays +) set hlsearch | " highlights all search matches (not as performant!) 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 set nocursorcolumn | " turn visual cursor column off (improves performance) set nocursorline | " turn visual cursor line off (improves performance) set nrformats+=alpha | " allows CTRL-A & CTRL-X to increment and decrement letters, not just numbers -set foldenable | " explicitly enable code folding, since this config makes it usable +set nofoldenable | " disable folding, because we have zi to toggle foldenable :) set exrc | " enable exrc, a specific .exrc per project, which can contain usual .vimrc commands set noequalalways | " do not evenly size windows when opening new or closing old set foldmethod=syntax | " foldlevel: syntax, indent, manual -- cgit v1.2.3