Created
November 28, 2015 16:08
-
-
Save jargnar/ab63d9c73b574e50295b to your computer and use it in GitHub Desktop.
vimrc on windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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