Skip to content

Instantly share code, notes, and snippets.

@vschlegel
Last active April 9, 2016 09:38
Show Gist options
  • Save vschlegel/e0be8777d6db4baacadf to your computer and use it in GitHub Desktop.
Save vschlegel/e0be8777d6db4baacadf to your computer and use it in GitHub Desktop.
vim config
"VIM Konfiguration
"Pfeiltasten
set nocompatible
"Zeilennummern
set nu
"Syntax-Highlighting
syntax on
"VIM weiß jetz, dass der HG dunkel ist
set background=dark
"Tabs sind 4 Zeichen lang
set tabstop=4
"Wie tabstop, aber bei Programmiersprachen
set shiftwidth=4
"Tabs sind Leerzeichen
set expandtab
"Tab-Leerzeichen als 4 Zeichen löschen
set smarttab
"Maximale Zeilenlänge
"set textwidth=30
"Keine neue Zeile (kein Zeilenumbruch) nach Bildschirmende
"set nowarp
"Lineal auf aktuelle Zeile
set cursorline
"Vertikaler Balken
"set colorcolumn=30
"Zusammengehörige Klammern Highlighten
set matchpairs=<:>,(:),{:},[:],":",':'
"Konfig je nach Dateityp
autocmd FileType html setlocal noexpandtab ts=4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment