Skip to content

Instantly share code, notes, and snippets.

@junegunn
Forked from anonymous/.vimrc
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save junegunn/e2147065f69833aa208a to your computer and use it in GitHub Desktop.
Save junegunn/e2147065f69833aa208a to your computer and use it in GitHub Desktop.
call plug#begin('~/.vim/bundle')
Plug 'bling/vim-airline'
Plug 'tpope/vim-fugitive'
Plug 'valloric/YouCompleteMe'
Plug 'SirVer/ultisnips'
Plug 'scrooloose/nerdtree'
Plug 'scrooloose/nerdcommenter'
Plug 'airblade/vim-gitgutter'
Plug 'kien/ctrlp.vim'
call plug#end()
" To ignore plugin indent changes:
" filetype indent off
" Put your non-Plugin stuff after this line
set laststatus=2
let g:airline_powerline_fonts = 1
let g:airline_theme = 'solarized'
set timeoutlen=50
let g:ycm_global_ycm_extra_conf = './.ycm_extra_conf.py'
let g:ycm_key_list_select_completion=['<C-n>', '<Down>']
let g:ycm_key_list_previous_completion=['<C-p>', '<Up>']
let g:UltiSnipsExpandTrigger="<Tab>"
let g:UltiSnipsJumpForwardTrigger="<Tab>"
let g:UltiSnipsJumpBackwardTrigger="<S-Tab>"
let g:ycm_confirm_extra_conf = 0
let g:ycm_autoclose_preview_window_after_completion = 1
set t_Co=256
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
let g:ctrlp_working_path_mode = 'ra'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment