Skip to content

Instantly share code, notes, and snippets.

@kroovysteph
Created April 11, 2017 11:33
Show Gist options
  • Save kroovysteph/0ad2b018d3bce8abffe43b000a61b19f to your computer and use it in GitHub Desktop.
Save kroovysteph/0ad2b018d3bce8abffe43b000a61b19f to your computer and use it in GitHub Desktop.
filetype off
set ruler laststatus=3 number title hlsearch
syntax on
set backspace=2 " make backspace work like most other apps
" verkuerzt die Breite von <Tab> auf 4
set tabstop=4
" dient dazu unsichtbare zeichen sichtbar zu machen
set listchars=tab:▸\ ,
set list
hi SpecialKey ctermfg=7
" unmap arrow keys
no <down> <Nop>
no <left> <Nop>
no <right> <Nop>
no <up> <Nop>
ino <down> <Nop>
ino <left> <Nop>
ino <right> <Nop>
ino <up> <Nop>
colorscheme molokai
highlight Normal ctermbg=NONE
highlight nonText ctermbg=NONE
" lagert die swap-dateien aus
set directory=~/.vim/swap//,.
" toggles NERDTree with Ctrl+N
map <C-n> :NERDTreeToggle<CR>
" gist link copying to clipboard
let g:gist_clip_command = 'xclip -selection clipboard'
" set the runtime path to include Vundle and initialize
set rtp+=/home/kroovy/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" plugin on GitHub repo
Plugin 'kroovysteph/snipmate.vim'
Plugin 'scrooloose/nerdtree'
Bundle 'mattn/webapi-vim'
Bundle 'mattn/gist-vim'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin on
"filetype indent on " required
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment