Last active
August 29, 2015 14:09
-
-
Save yamafaktory/53b3783bf6c6fc172ebc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
" 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