"if &columns < 100 " set columns=100 "end "if &lines < 35 " set lines=35 "end set dir=/home/ben/.cache/vim/swp/ set runtimepath=$HOME/.config/vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after runtime bundle/vim-pathogen/autoload/pathogen.vim "let g:EditorConfig_exec_path = '/usr/bin/editorconfig' " basics set nocompatible " use vim defaults set mouse=a " make sure mouse is used in all cases. set fileformat=unix " force unix-style line breaks set tabpagemax=30 " maximum number of tabs " tabs and indenting "set expandtab " insert spaces instead of tab chars set tabstop=8 " a n-space tab width set shiftwidth=8 " allows the use of < and > for VISUAL indenting set softtabstop=0 " counts n spaces when DELETE or BCKSPCE is used set fileencoding=utf-8 if has("autocmd") filetype plugin indent on " indents behaviour depends on type else set autoindent " auto indents next new line endif set cinoptions=t0,g0,(0,:0 " searching set nohlsearch " dont highlight all search results set incsearch " increment search set ignorecase " case-insensitive search set smartcase " upper-case sensitive search " formatting set backspace=2 " full backspacing capabilities set history=100 " 100 lines of command line history set cmdheight=1 " command line height set laststatus=2 " occasions to show status line, 2=always. set ruler " ruler display in status line set showmode " show mode at bottom of screen set showcmd " display some infos (in visual) set number " show line numbers set nobackup " disable backup files (filename~) set showmatch " show matching brackets (),{},[] set ww=<,>,[,] " whichwrap -- left/right keys can traverse up/down " search tags-file in the opened file's dir and if not found recursiveley set tags=./tags; " syntax highlighting syntax on " enable syntax highlighting let NERDTreeShowHidden=1 " highlight redundant whitespaces and tabs. "highlight RedundantSpaces ctermbg=red guibg=red "match RedundantSpaces /\s\+$\| \+\ze\t\|\t/ " gvim settings set guioptions=aeicv "set guifont=Dejavu\ Sans\ Mono\ 10 " backslash spaces set guifont=Monospace\ Regular\ 10 " backslash spaces "set lines=30 "set columns=95 " F5 toggles spell checking :map :setlocal spell! spelllang=de_de :imap :setlocal spell! spelllang=de_de :map :make :imap :make " common save shortcuts ~ dont work with vim :( "inoremap :wa "nnoremap :w " Mapping for Copy/Paste map "+x map "+y "map "+p " enter ex mode with semi-colon nnoremap ; : vnoremap ; : if has('gui_running') " Make shift-insert work like in Xterm map map! endif " strip ^M linebreaks from dos formatted files map M :%s/ $//g " use Tab to switch between current and last buffer nmap :b# map :NERDTreeToggle " mutt rules autocmd BufRead /tmp/mutt-* set tw=72 spell " load build-in man page viewer command runtime ftplugin/man.vim " set bash syntax - pressed v in bash-vi mode au BufRead,BufNewFile /tmp/bash-* let is_bash=1|setfiletype sh " mesa project specific settings autocmd BufNewFile,BufRead /home/ben/src/mesa*/*{c,h,cpp} set sw=3 ts=8 sts=3 et autocmd BufNewFile,BufRead /home/ben/src/mesa*/Makefile.* set ft=make autocmd BufNewFile,BufRead /home/ben/src/mesa*/SCons* set ft=python sw=4 sts=4 ts=4 et autocmd BufNewFile,BufRead /home/ben/src/mesa*/configure.ac set sw=4 sts=4 ts=8 et " wayland project specific settings autocmd BufNewFile,BufRead /home/ben/src/wayland/*xml set sw=2 ts=8 sts=2 et " sssd autocmd BufNewFile,BufRead /home/ben/src/sssd/*{c,h,cpp} set sw=4 ts=8 sts=4 et " sqlbox autocmd BufNewFile,BufRead /home/ben/studium/mmp/sqlbox/*xml set sw=2 ts=8 sts=2 et autocmd BufNewFile,BufRead /home/ben/studium/mmp/sqlbox/*php set sw=4 ts=8 sts=4 et " settings for web projects autocmd BufNewFile,BufRead /home/ben/htdocs/mutti-web/*{xsl,xml} set sw=2 ts=8 sts=2 et " " settings for web projects autocmd BufNewFile,BufRead /home/ben/src/qbcontact/*{php,html} set sw=4 ts=4 sts=4 " settings for systemd autocmd BufNewFile,BufRead /home/ben/src/systemd/* set sw=8 ts=8 sts=8 et autocmd BufNewFile,BufRead /home/ben/src/systemd/man/*.xml set sw=2 ts=2 sts=2 et " vimmanpager stuff " disable line numbers when using vim as manpager autocmd FileType man set nonumber nohlsearch nohlsearch "colorscheme tango "set background=light autocmd FileType tex colorscheme delek "autocmd FileType asciidoc colorscheme inkpot set spellfile=$HOME/.config/vim/spell/spell.de.add,$HOME/vim/spell/spell.en.add highlight ExtraWhitespace ctermbg=red guibg=red match ExtraWhitespace /\s\+$/ " Show trailing whitespace and spaces before a tab: "match ExtraWhitespace /\s\+$\| \+\ze\t/ autocmd BufWinEnter * match ExtraWhitespace /\s\+$/ autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@ :tabprevious :map :tabnext :map :tabprevious :map :tabnext :map :tabnext call pathogen#infect() colorscheme tangoX set noerrorbells set visualbell " Turn of visualbell screen flashing set t_vb= " " its important that viminfo is set at the end " some options seem to overwrite this (history..) set viminfo+=n/home/ben/.cache/vim/viminfo