Last active
April 27, 2018 15:29
-
-
Save punkyoon/0ca3c5ba754b22537333b5a4f80b6b4a to your computer and use it in GitHub Desktop.
.vimrc for @punkyoon
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
| set ai | |
| set si | |
| set sm | |
| set nu | |
| set title | |
| set expandtab | |
| set tabstop=4 | |
| set cursorline | |
| set shiftwidth=4 | |
| set encoding=utf8 | |
| syntax on | |
| call plug#begin('~/.vim/plugged') | |
| Plug 'tomasr/molokai' | |
| Plug 'bling/vim-airline' | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'scrooloose/syntastic' | |
| call plug#end() | |
| color molokai | |
| map <C-n> :NERDTreeToggle<CR> |
Author
Author
When vim colors are not working properly in terminal
export TERM=xterm-256color
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Install vim-plug
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim