Skip to content

Instantly share code, notes, and snippets.

@punkyoon
Last active April 27, 2018 15:29
Show Gist options
  • Select an option

  • Save punkyoon/0ca3c5ba754b22537333b5a4f80b6b4a to your computer and use it in GitHub Desktop.

Select an option

Save punkyoon/0ca3c5ba754b22537333b5a4f80b6b4a to your computer and use it in GitHub Desktop.
.vimrc for @punkyoon
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>
@punkyoon
Copy link
Copy Markdown
Author

Install vim-plug

curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

@punkyoon
Copy link
Copy Markdown
Author

punkyoon commented Apr 27, 2018

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