Skip to content

Instantly share code, notes, and snippets.

@kevinquillen
Last active June 10, 2017 03:48
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 kevinquillen/0655e97672d9091aa738f016b7c73b25 to your computer and use it in GitHub Desktop.
Save kevinquillen/0655e97672d9091aa738f016b7c73b25 to your computer and use it in GitHub Desktop.
my vimrc file
set nocompatible " be iMproved, required
filetype off " required
syntax enable
set number
set showcmd
set hlsearch
set incsearch
set nobackup
set noswapfile
set backspace=indent,eol,start
set tabstop=2
set shiftwidth=2
set smarttab
set copyindent
set showmatch
set laststatus=2
set ttimeoutlen=50
set noshowmode
nnoremap <Up> :echomsg "--- USE K ---"<cr>
nnoremap <Down> :echomsg "--- USE J ---"<cr>
nnoremap <Left> :echomsg "--- USE H ---"<cr>
nnoremap <Right> :echomsg "--- USE L ---"<cr>
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'flazz/vim-colorschemes'
Plugin 'tpope/vim-fugitive'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'easymotion/vim-easymotion'
Plugin 'vim-syntastic/syntastic'
Plugin 'joonty/vim-sauce'
Plugin 'SirVer/ultisnips'
Plugin 'honza/vim-snippets'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
call vundle#end() " required
filetype plugin indent on " required
let g:UltiSnipsExpandTrigger="<tab>"
let g:UltiSnipsJumpForwardTrigger="<c-b>"
let g:UltiSnipsJumpBackwardTrigger="<c-z>"
let g:airline_powerline_fonts = 1
" @todo - learn NERDTree shortcuts first
" autocmd vimenter * NERDTree
colorscheme monokai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment