Created
May 12, 2016 21:05
-
-
Save seanspradlin/09fd46402a91c3eb939c6934f3949d71 to your computer and use it in GitHub Desktop.
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
colorscheme monokai | |
syntax on | |
set nocompatible " be iMproved, required | |
filetype off " required | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
"Let Vundle manage itself | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'tomtom/tcomment_vim' | |
Plugin 'tpope/vim-fugitive' | |
Plugin 'scrooloose/nerdtree' | |
Plugin 'scrooloose/syntastic' | |
Plugin 'jiangmiao/auto-pairs' | |
" Color Schemes | |
Plugin 'flazz/vim-colorschemes' | |
Plugin 'sickill/vim-monokai' | |
" Typescript | |
Plugin 'leafgarland/typescript-vim' | |
Plugin 'Shougo/vimproc.vim' | |
Plugin 'Quramy/tsuquyomi' | |
call vundle#end() " required | |
set autoindent | |
filetype plugin indent on " required | |
map <C-n> :NERDTreeToggle<CR> | |
set statusline+=%#warningmsg# | |
set statusline+=%{SyntasticStatuslineFlag()} | |
set statusline+=%* | |
let g:syntastic_javascript_checkers = ['eslint'] | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
" Split configs | |
nnoremap <C-J> <C-W><C-J> | |
nnoremap <C-K> <C-W><C-K> | |
nnoremap <C-L> <C-W><C-L> | |
nnoremap <C-H> <C-W><C-H> | |
set splitbelow | |
set splitright | |
set backspace=indent,eol,start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment