Created
July 17, 2014 06:58
-
-
Save jargnar/b4798670930f476bbb46 to your computer and use it in GitHub Desktop.
My .vimrc file
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 " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" " alternatively, pass a path where Vundle should install plugins | |
" "call vundle#begin('~/some/path/here') | |
" | |
" " let Vundle manage Vundle, required | |
Plugin 'gmarik/Vundle.vim' | |
" Powerline | |
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'} | |
" NerdTree | |
Plugin 'scrooloose/nerdtree' | |
" Colorschemes | |
Plugin 'flazz/vim-colorschemes' | |
" Jedi vim | |
Plugin 'davidhalter/jedi-vim' | |
Plugin 'jelera/vim-javascript-syntax' | |
Plugin 'pangloss/vim-javascript' | |
Plugin 'nathanaelkane/vim-indent-guides' | |
Plugin 'Raimondi/delimitMate' | |
Plugin 'scrooloose/syntastic' | |
Plugin 'Valloric/YouCompleteMe' | |
Plugin 'marijnh/tern_for_vim' | |
Plugin 'terryma/vim-multiple-cursors' | |
Plugin 'mattn/emmet-vim' | |
Plugin 'kien/ctrlp.vim' | |
" " The following are examples of different formats supported. | |
" " Keep Plugin commands between vundle#begin/end. | |
" " plugin on GitHub repo | |
" Plugin 'tpope/vim-fugitive' | |
" " plugin from http://vim-scripts.org/vim/scripts.html | |
" Plugin 'L9' | |
" " Git plugin not hosted on GitHub | |
" Plugin 'git://git.wincent.com/command-t.git' | |
" " git repos on your local machine (i.e. when working on your own plugin) | |
" Plugin 'file:///home/gmarik/path/to/plugin' | |
" " The sparkup vim script is in a subdirectory of this repo called vim. | |
" " Pass the path to set the runtimepath properly. | |
" Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} | |
" " Avoid a name conflict with L9 | |
" Plugin 'user/L9', {'name': 'newL9'} | |
" All of your Plugins must be added before the following line | |
call vundle#end() " required | |
filetype plugin indent on " required | |
" " To ignore plugin indent changes, instead use: | |
" "filetype plugin on | |
" " | |
" " Brief help | |
" " :PluginList - list configured plugins | |
" " :PluginInstall(!) - install (update) plugins | |
" " :PluginSearch(!) foo - search (or refresh cache first) for foo | |
" " :PluginClean(!) - confirm (or auto-approve) removal of unused plugins | |
" " | |
" " see :h vundle for more details or wiki for FAQ | |
" " Put your non-Plugin stuff after this line | |
" Powerline setup | |
set guifont=Droid\ Sans\ Mono\ for\ Powerline\ 9 | |
set laststatus=2 | |
set t_Co=256 | |
" NERDTre setup | |
" autocmd vimenter * NERDTree | |
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