Created
April 1, 2014 09:30
-
-
Save hnaohiro/9910875 to your computer and use it in GitHub Desktop.
simple vimrc
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
set nowritebackup | |
set nobackup | |
set noswapfile | |
set clipboard+=unnamed | |
set nrformats-=octal | |
set timeoutlen=3500 | |
set hidden | |
set history=50 | |
set formatoptions+=mM | |
set virtualedit=block | |
set whichwrap=b,s,[,],<,> | |
set backspace=indent,eol,start | |
set ambiwidth=double | |
set wildmenu | |
set ignorecase | |
set smartcase | |
set wrapscan | |
set incsearch | |
set hlsearch | |
set noerrorbells | |
set novisualbell | |
set shellslash | |
set number | |
set showmatch matchtime=1 | |
set ts=2 sw=2 sts=2 | |
set expandtab | |
set autoindent | |
set cinoptions+=:0 | |
set title | |
set cmdheight=2 | |
set laststatus=2 | |
set showcmd | |
set display=lastline | |
syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment