-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
63 lines (46 loc) · 1.35 KB
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"" .vimrc
""" タブ幅の設定
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
""" 自動インデント
set autoindent
""" 入力時の動き
" 対応する括弧に一次的にカーソル移動
set showmatch
""" 選択文字列をクリップボードに入れる
"set clipboard=unnamed
""" BackSpaceで削除出来るものを指定
set backspace=start,eol,indent
" 括弧のマッチング表示を停止
"let loaded_matchparen = 1
""" 行番号を表示
set number
""" 検索
"set smartcase
set ic
set incsearch
set nowrapscan
" 検索結果のハイライトを停止
"set nohlsearch
" 検索結果の文字色を白に変更
"highlight Search ctermfg=white
" swapファイルの場所
set directory=$HOME/.vim_swp
""" Filetype
"filetype plugin indent on
"autocmd FileType html,xml,xsl, source ~/.vim/bundle/closetag.vim
""" 改行時のコメント自動挿入をオフ
autocmd Filetype * set formatoptions-=ro
""" ハイライト
syntax on
""" バックアップファイル
"set backupdir=$HOME/vim_backup
""" Statusbar caption
set statusline=%n:\ %<%f\ %m%r%h%w[%{&fileformat}][%{has('multi_byte')&&\ &fileencoding!=''?&fileencoding:&encoding}]\ 0x%B=%b%=%l,%c\ %P
set laststatus=2
highlight statusline term=NONE cterm=NONE ctermfg=black ctermbg=white
"" Tabs
nnoremap <silent> gn :<C-u>tabnext<CR>
nnoremap <silent> gp :<C-u>tabprevious<CR>