- Change language to:
Here i will add some usefull stuff which you can use to help me translate the project. Ofcourse you are not restricted in using the stuff for other things then my documentation project :-).
Since this can become very big someday, i will split it if needed.
.vimrc (obtained from my friend Josef El-Rayes).
" syn on
augroup sgmledit
autocmd FileType sgml set formatoptions=cq2l " Special formatting options
autocmd FileType sgml set textwidth=70 " Wrap lines at 70 spaces
autocmd FileType sgml set shiftwidth=2 " Automatically indent
autocmd FileType sgml set softtabstop=2 " Tab key indents 2 spaces
autocmd FileType sgml set tabstop=8 " Replace 8 spaces with a tab
autocmd FileType sgml set autoindent " Automatic indentation
augroup END
" schönen c code erzeugen
set nocp incsearch
set cinoptions=:0,p0,t0
set cinwords= "kein indentlevel++ bei keywords
set formatoptions=tcqr
" automatisch im C-Stil einruecken
set cindent
"zeigt die aktuelle Cursorposition an
set ruler
"" shell to start with !
set shell=sh
" zeige passende Klammern
set showmatch
" Anzeige INSERT/REPLACE/…
set showmode
" halbfertige Kommandos werden angezeigt
set showcmd
" Einrückung
"set shiftwidth=3
"set tabstop=3
"zeilennummern
set number
"zeilennummern
set number
"hintergrd farbe
set background=dark
hi Normal guibg=black guifg=white
"syntaxhighlighting
syntax on
"zeilenumbruch
"set tw=72
set mousehide " hide mouse pointer while typing
set autowrite "saves on certain actions, like make
set laststatus=2 "stauts immer anzeigen

