Skip to content

Instantly share code, notes, and snippets.

@jeonguk
Last active August 23, 2018 15:07
Show Gist options
  • Save jeonguk/e4e2f6e5322a963a6dafb5174e9ee5bd to your computer and use it in GitHub Desktop.
Save jeonguk/e4e2f6e5322a963a6dafb5174e9ee5bd to your computer and use it in GitHub Desktop.
vimrc config
"=== INDENT ===
set autoindent
set cindent
set smartindent
set tabstop=4
set shiftwidth=4
"=== VIEW ===
set visualbell
set number
set ruler
set title
set wrap
set cursorline
set linebreak
set showmatch
set background=dark
set guifont=NanumGothicCoding:h12:cHANGEUL
"=== SEARCH ===
set nowrapscan
set hlsearch
set ignorecase
set incsearch
"=== EDIT ===
set backspace=eol,start,indent
set history=1000
set fencs=ucs-bom,utf-8,euc-kr,latin1
set fileencoding=utf-8
set nobackup
"<=== VUNDLE config Start ===>
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
let path='~/.vim/bundle'
"=== VIM-AIRLINE ===
set laststatus=2
"=== COLOR SCHEME ===
syntax on
syntax enable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment