X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/409e1493ea45058136564685915ae4dd6c8a427a..966b9444bb93aab229e2b6b03d183fed700e1762:/.vimrc diff --git a/.vimrc b/.vimrc index 209d079..1030ac6 100644 --- a/.vimrc +++ b/.vimrc @@ -1453,11 +1453,16 @@ autocmd BufNewFile,BufRead /home/madduck/debian/pkg/logcheck/*/rulefiles/linux/* autocmd BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal g'\"zz" | endif " disable list mode when inserting stuff, otherwise keep it enabled, it's -" useful +" useful (see also setting lcs) augroup listinsert autocmd InsertEnter * set nolist autocmd InsertLeave * set list augroup end +" flag trailing spaces as error only when not inserting +augroup tsperrorinsert + autocmd InsertEnter * match none /\s\+$/ + autocmd InsertLeave * match Error /\s\+$/ +augroup end if &cp | set nocp | endif let s:cpo_save=&cpo @@ -1495,6 +1500,11 @@ map sy :echo synIDattr(synID(line("."), col("."), 1), "name") map / :nohlsearch +omap [{ :normal {jj +nmap [{ :normal {jj +omap ]} :normal }kk +nmap ]} :normal }kk + iab sgf Sehr geehrte Frau iab sgh Sehr geehrter Herr iab lf Liebe Frau @@ -1509,6 +1519,10 @@ iab mbbg Mit bundesbrüderlichen Grüßen iab mvbg Mit verbandsbrüderlichen Grüßen iab vd Vielen Dank iab vld Vielen lieben Dank +iab email e-mail +iab emails e-mails +iab Email E-mail +iab Emails E-mails let &cpo=s:cpo_save unlet s:cpo_save @@ -1517,5 +1531,3 @@ source $HOME/.vim/macros/table.vim let g:SuperTabMappingForward = '' let g:SuperTabMappingBackward = '' - -match Error /\s\+$/