Skip to content

Instantly share code, notes, and snippets.

@jeonguk
Created November 16, 2018 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeonguk/3374a489bde71149a092447e2edd0af1 to your computer and use it in GitHub Desktop.
Save jeonguk/3374a489bde71149a092447e2edd0af1 to your computer and use it in GitHub Desktop.
vimrc
"=== INDENT ===
"set autoindent
"set cindent
"set smartindent
set tabstop=4
set expandtab
set shiftwidth=4
set ts=4
set ai
"=== 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