0e4820f7813ad5666c6438896b83d697c9a1b131
[grml-etc-core.git] / etc / skel / .vimrc
1 " Filename:      .vimrc
2 " Purpose:       configuration file for editor vim
3 " Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 " Bug-Reports:   see http://grml.org/bugs/
5 " License:       This file is licensed under the GPL v2.
6 " Latest change: Sam Feb 10 11:20:38 CET 2007 [mika]
7 "###############################################################################
8 " Thanks to Sven Guckes for his template!
9 "###############################################################################
10
11 " be no-compatible with vi
12   set nocp
13 " turn these ON:
14   set digraph ek hidden ruler sc vb wmnu
15 " turn these OFF ("no" prefix):
16   set noeb noet nosol
17 " non-toggles:
18   set bs=2 fo=cqrt ls=2 shm=at tw=72 ww=<,>,h,l
19   set comments=b:#,:%,fb:-,n:>,n:)
20 "  set list listchars=tab:»·,trail:·
21   set listchars=eol:$,precedes:«,extends:»,tab:»·,trail:·
22   set viminfo=%,'50,\"100,:100,n~/.viminfo
23   set tags=./tags,./TAGS,tags,TAGS,../tags,../../tags,../../../tags,../../../../tags
24
25 " autocommands:
26 " when the file type is "mail" then set the textwidth to "70":
27   au FileType mail   set tw=70
28 " When editing a file, always jump to the last cursor position
29 "  au BufReadPost * if line("'\"") | exe "'\"" | endif
30   autocmd BufReadPost * if line("'\"") && line("'\"") <= line("$") | exe "normal `\"" | endif
31
32 " some colors - as an example "white on black" [use bold fonts]:
33 "  hi normal   ctermfg=white  ctermbg=black guifg=white  guibg=black
34 "  hi nontext  ctermfg=blue   ctermbg=black guifg=blue   guibg=black
35 " switch on syntax coloring!! "bunt ist meine lieblingsfarbe!" :-)
36   syn on
37 " set t_Co=256                " number of colors
38
39 " some useful mappings:
40   set pastetoggle=<f11>
41
42 " with F7 copy all current buffer to clipboard, or a selection.
43 " with shift-F7, paste all clipboard contents
44 " see: http://www.vim.org/tips/tip.php?tip_id=964
45   map   <F7>  :w !xclip<CR><CR>
46   vmap  <F7>  "*y
47   map <S-F7>  :r!xclip -o<CR>
48
49 " remove/delete trailing whitespace:
50   nmap ;tr :%s/\s\+$//
51   vmap ;tr  :s/\s\+$//
52
53 " execute the command in the current line (minus the first word, which
54 " is intended to be a shell prompt) and insert the output in the buffer
55   map ,e ^wy$:r!\12"\r
56
57 " update timestamp
58   iab YDATE <C-R>=strftime("%a %b %d %T %Z %Y")<CR>
59   map ,L  1G/Latest change:\s*/e+1<CR>CYDATE<ESC>
60
61 " the shell in a box mode. found in posting by Stefan `Sec` Zehl
62 " in newsgroup de.alt.sysadmin.recovery, msg­id:  <df7lhe$2hup$1@ice.42.org>
63 " Requires zsh for "print -P $PS1" / replace if needed.
64 " Your prompt should end in > (and only contain one)
65 " so run something like:
66 "   % export PS1='%n@%m > '
67 " in your zsh, press ',l' and <enter> for running commands, end mode via <esc>
68   map __start :imap <C-V><C-M> <C-O>__cmd<C-V>\|imap <C-V><ESC> <C-V><ESC>__end<C-M>
69   noremap __end :iunmap <C-V><CR>\|iunmap <C-V><ESC><C-M>:"Vish ended.<C-M>
70   noremap __cmd 0<ESC>f>ly$:r !<C-R>";print -P $PS1<C-M>A
71   noremap __scmd :r !print -P $PS1<c-M>A
72   map ,l __start__scmd
73
74 " Kill quote spaces (when quoting a quote)
75   map ,kqs mz:%s/^> >/>>/<cr>
76
77 " Interface to Mercurial Version Control
78   if filereadable( "/usr/share/doc/mercurial/examples/vim/hg-menu.vim" )
79     source /usr/share/doc/mercurial/examples/vim/hg-menu.vim
80   endif
81
82 " Vim 7 brings cool new features - see ':he version7'!
83 " The coolest features of Vim7 by mika
84 " ====================================
85 "  1) omni/intellisense completion: use CTRL-X CTRL-O in insert mode to start it [:he compl-omni]
86 "  2) internal grep: vimgrep foo bar [:he vimgrep]
87 "  3) tab pages: vim -p file1 file2 - then use the :tab command [:he tabpage]
88 "     gt -> next tab
89 "     gT -> previous tab
90 "  4) undo branches: :undolist / :earlier 2h / :later 2h
91 "     instead of using u (undo) and CTRL-R (redo), you might experiment with g-
92 "     and g+ to move through the text state [:he undolist]
93 "  5) browse remote directories via scp using netrw plugin: :edit scp://host//path/to/ [:he netrw.vim]
94 "  6) start editing the filename under the cursor and jump to the line
95 "     number following the file name: press gF [:he gF]
96 "  7) press 'CTRL-W F' to start editing the filename under the cursor in a new
97 "     window and jump to the line number following the file name. [:he CTRL-W_F]
98 "  8) spelling correction (see later for its configuration) [:he spell]:
99 "      ]s  -> Move to next misspelled word after the cursor.
100 "      zg  -> Add word under the cursor as a good word to the first name in 'spellfile'
101 "      zw  -> Like "zg" but mark the word as a wrong (bad) word.
102 "      z=  -> For the word under/after the cursor suggest correctly spelled words. 
103 " 9)  highlight active cursor line using 'set cursorline' [:he cursorline]
104 " 10) delete inner quotes inside HTML-code using <C-O>cit (see its mapping later) [:he tag-blocks]
105 "
106 if version >= 700
107   " Thanks for some ideas to Christian 'strcat' Schneider and Julius Plenz
108   " turn spelling on by default:
109   "  set spell
110   " toggle spelling with F12 key:
111     map <F12> :set spell!<CR><Bar>:echo "Spell Check: " . strpart("OffOn", 3 * &spell, 3)<CR>
112     set spellfile=~/.vim/spellfile.add
113   " change language -  get spell files from http://ftp.vim.org/pub/vim/runtime/spell/ =>
114   " cd ~/.vim/spell && wget http://ftp.vim.org/pub/vim/runtime/spell/de.latin1.spl
115   " change to german:
116   "  set spelllang=de
117   " highlight spelling correction:
118   "  highlight SpellBad    term=reverse   ctermbg=12 gui=undercurl guisp=Red       " badly spelled word 
119   "  highlight SpellCap    term=reverse   ctermbg=9  gui=undercurl guisp=Blue      " word with wrong caps
120   "  highlight SpellRare   term=reverse   ctermbg=13 gui=undercurl guisp=Magenta   " rare word
121   "  highlight SpellLocale term=underline ctermbg=11 gui=undercurl guisp=DarkCyan  " word only exists in other region
122
123   " set maximum number of suggestions listed to top 10 items:
124   set sps=best,10
125
126   " highlight matching parens:
127   " set matchpairs=(:),[:],{:},< :>
128   " let loaded_matchparen = 1
129   " highlight MatchParen term=reverse   ctermbg=7   guibg=cornsilk
130
131   " highlight the cursor line and column:
132   " set cursorline
133   " highlight CursorLine   term=reverse   ctermbg=7   guibg=#333333
134   " highlight CursorColumn guibg=#333333
135
136   " change inner tag - very useful e.g. within HTML-code!
137   " ci" will remove the text between quotes, also works for ' and `
138   imap <F10> <C-O>cit
139
140   " use the popup menu also when there is only one match:
141   " set completeopt=menuone 
142   " determine the maximum number of items to show in the popup menu for:
143   set pumheight=7
144   " set completion highlighting:
145   "  highlight Pmenu      ctermbg=13     guifg=Black   guibg=#BDDFFF              " normal item
146   "  highlight PmenuSel   ctermbg=7      guifg=Black   guibg=Orange               " selected item
147   "  highlight PmenuSbar  ctermbg=7      guifg=#CCCCCC guibg=#CCCCCC              " scrollbar
148   "  highlight PmenuThumb cterm=reverse  gui=reverse guifg=Black   guibg=#AAAAAA  " thumb of the scrollbar
149
150 endif
151 "# END OF FILE #################################################################