Skip to content

Instantly share code, notes, and snippets.

@k0nserv
Created November 24, 2015 08:11
Show Gist options
  • Save k0nserv/8b828974768bc571ce06 to your computer and use it in GitHub Desktop.
Save k0nserv/8b828974768bc571ce06 to your computer and use it in GitHub Desktop.
set nocompatible " be eMproved
filetype off " required!
" Vundle
set rtp+=~/.vim/bundle/vundle/
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'jistr/vim-nerdtree-tabs'
Plugin 'kien/ctrlp.vim'
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
Plugin 'vim-ruby/vim-ruby'
" Color Schemes
Plugin 'altercation/vim-colors-solarized'
Plugin 'jnurmine/Zenburn'
call vundle#end()
set number
set shell=/bin/zsh\ -l
syntax on
filetype plugin indent on
set expandtab
set tabstop=2
set shiftwidth=2
set softtabstop=2
set backspace=indent,eol,start
set cursorline
set noswapfile
set background=dark
colorscheme solarized
" Remap
vnoremap . :norm.<CR>
inoremap jk <ESC>
" Windows
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment