Skip to content

Instantly share code, notes, and snippets.

@xd547
Created November 12, 2013 03:04
Show Gist options
  • Select an option

  • Save xd547/7424798 to your computer and use it in GitHub Desktop.

Select an option

Save xd547/7424798 to your computer and use it in GitHub Desktop.
" encoding
set encoding=utf-8
set fileencoding=utf-8
" preference
syntax on
set ai
set shiftwidth=2
set tabstop=2
set softtabstop=2
set expandtab
set lines=30 columns=100
set ic
set nu
set hlsearch
set incsearch
set smartindent
set confirm
set history=100
colorscheme morning
" map
imap jj <Esc>
imap nn <C-n>
imap mm <C-p>
" pairs
inoremap ( ()<Left>
inoremap { {}<Left>
inoremap [ []<Left>
inoremap ' ''<Left>
inoremap " ""<Left>
" guiconfig
if has('gui_running')
winpos 0 0
set guifont=Monospace\ 13
set guioptions-=T
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment