Skip to content

Instantly share code, notes, and snippets.

@jargnar
Created November 28, 2015 16:08
Show Gist options
  • Save jargnar/ab63d9c73b574e50295b to your computer and use it in GitHub Desktop.
Save jargnar/ab63d9c73b574e50295b to your computer and use it in GitHub Desktop.
vimrc on windows
set nocompatible
source $VIMRUNTIME/mswin.vim
behave mswin
filetype off
set rtp+=$HOME/vimfiles/bundle/Vundle.vim/
call vundle#begin('$HOME/vimfiles/bundle/')
Plugin 'VundleVim/Vundle.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'bling/vim-airline'
Plugin 'kien/ctrlp.vim'
Plugin 'pangloss/vim-javascript'
Plugin 'mattn/emmet-vim'
Plugin 'tpope/vim-fugitive'
Plugin 'terryma/vim-multiple-cursors'
call vundle#end()
filetype plugin indent on
" Put other stuff after this line
" For vim-airline to show by default
set laststatus=2
" NERDTree shortcut Ctrl E
nnoremap <C-e> :NERDTreeToggle<CR>
syntax enable
colorscheme distinguished
set number
filetype indent on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment