Skip to content

Instantly share code, notes, and snippets.

@learosema
Created January 17, 2015 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save learosema/727ec8362e6a1204774c to your computer and use it in GitHub Desktop.
Save learosema/727ec8362e6a1204774c to your computer and use it in GitHub Desktop.
My vim configuration
set nocp
set directory=~
source $VIMRUNTIME/mswin.vim
" Laden der GUI-Menues verhindern
if has("gui_running")
set guioptions-=m
set guioptions-=T
set guifont=Droid_Sans_Mono:h12:cANSI
endif
set ff=unix
set noexpandtab
set copyindent
set preserveindent
set softtabstop=0
set shiftwidth=4
set tabstop=4
set autoindent
set nosmartindent
set backspace=indent,eol,start
set enc=utf-8
set cmdheight=2
set showmode
set ruler
set icon
set showmatch
set nobackup
set hlsearch
syntax sync fromstart
syntax on
filetype plugin on
colorscheme slate
" Ruhe
set noerrorbells
set vb t_vb=
set fileencodings=utf-8
"JSON-Unterstuetzung
autocmd BufNewFile,BufRead *.json set ft=javascript
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment