Skip to content

Instantly share code, notes, and snippets.

@seanspradlin
Created May 12, 2016 21:05
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 seanspradlin/09fd46402a91c3eb939c6934f3949d71 to your computer and use it in GitHub Desktop.
Save seanspradlin/09fd46402a91c3eb939c6934f3949d71 to your computer and use it in GitHub Desktop.
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