Created
March 28, 2011 01:33
-
-
Save closer/889850 to your computer and use it in GitHub Desktop.
My vim setting
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
| colorscheme zenburn | |
| set autoindent | |
| set backupdir=$HOME/vimbackup | |
| set nocompatible | |
| set expandtab | |
| set number | |
| "シフト移動幅 | |
| set shiftwidth=2 | |
| "閉じ括弧が入力されたとき、対応する括弧を表示する | |
| set showmatch | |
| "検索時に大文字を含んでいたら大/小を区別 | |
| set smartcase | |
| "新しい行を作ったときに高度な自動インデントを行う | |
| set smartindent | |
| "行頭の余白内で Tab を打ち込むと、'shiftwidth' の数だけインデントする。 | |
| set smarttab | |
| "ファイル内の <Tab> が対応する空白の数 | |
| set tabstop=2 | |
| "カーソルを行頭、行末で止まらないようにする | |
| set whichwrap=b,s,h,l,<,>,[,] | |
| "検索をファイルの先頭へループしない | |
| set nowrapscan |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment