Skip to content

Instantly share code, notes, and snippets.

@akishin
Created May 27, 2012 04:17
Show Gist options
  • Save akishin/2802164 to your computer and use it in GitHub Desktop.
Save akishin/2802164 to your computer and use it in GitHub Desktop.
.gvimrc
" 縦幅
set lines=60
" 横幅
set columns=160
" クリップボード共有
set clipboard=unnamed
" ツールバーを削除
set guioptions-=T
" gvim は UTF-8
set encoding=utf8
" 無名レジスタに入るデータを、*レジスタにも入れる
set clipboard+=unnamed
" for NERDTree
autocmd VimEnter * NERDTree
autocmd VimEnter * wincmd p
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment