Skip to content

Instantly share code, notes, and snippets.

@heshed
Last active August 29, 2015 14:12
Show Gist options
  • Save heshed/f49196eb48cf2b9b3126 to your computer and use it in GitHub Desktop.
Save heshed/f49196eb48cf2b9b3126 to your computer and use it in GitHub Desktop.
.vimrc
" see https://github.com/gmarik/Vundle.vim
set ruler
set hlsearch
set tabstop=4
set shiftwidth=4
syntax on
set nobackup
set bs=2
set history=50
set visualbell t_vb = ""
set showmatch
set et
set ai
colorscheme elflord
set shellcmdflag=-ic
cabbrev E Explore
if $LANG[0] == 'k' && $LANG[1] == 'o'
set fileencoding=korea
endif
set nocompatible " be iMproved, required
filetype off " required
set wildmenu
set wildmode=longest,list
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'keycastr/keycastr'
Plugin 'tpope/vim-fugitive'
Plugin 'wincent/command-t'
Plugin 'Shougo/neocomplcache.vim'
Plugin 'tomasr/molokai'
Plugin 'tpope/vim-markdown'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'majutsushi/tagbar'
Plugin 'bling/vim-airline'
Plugin 'kien/ctrlp.vim'
Plugin 'scrooloose/syntastic'
Plugin 'junegunn/vim-peekaboo'
Plugin 'L9'
" Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Plugin 'user/L9', {'name': 'newL9'}
call vundle#end() " required
filetype plugin indent on " required
let g:neocomplcache_enable_at_startup = 1
let g:molokai_original = 1
let g:EasyMotion_smartcase = 1
nmap <F8> :TagbarToggle<CR>
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
let g:ctrlp_working_path_mode = 'ra'
let g:airline#extensions#tabline#enabled = 1
" Gif config
" nmap s <Plug>(easymotion-s2)
" nmap t <Plug>(easymotion-t2)
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment