Skip to content

Instantly share code, notes, and snippets.

@yamafaktory
Last active August 29, 2015 14:09
Show Gist options
  • Save yamafaktory/53b3783bf6c6fc172ebc to your computer and use it in GitHub Desktop.
Save yamafaktory/53b3783bf6c6fc172ebc to your computer and use it in GitHub Desktop.
" Vim-plug
call plug#begin()
Plug 'https://github.com/jelera/vim-javascript-syntax.git'
Plug 'https://github.com/itchyny/lightline.vim'
Plug 'christoomey/vim-tmux-navigator'
Plug 'bling/vim-airline'
Plug 'scrooloose/syntastic'
Plug 'airblade/vim-gitgutter'
call plug#end()
" General
set laststatus=2
set smartindent
set tabstop=2
set shiftwidth=2
set expandtab
set number
set visualbell
set hidden
set history=999
set autoread
set title
set encoding=utf-8
set fileencoding=utf-8
set incsearch
set hlsearch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment