Created
November 12, 2013 03:04
-
-
Save xd547/7424798 to your computer and use it in GitHub Desktop.
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
| " 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