-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
72 lines (71 loc) · 1.96 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
64
65
66
67
68
69
70
71
72
""dein Scripts-----------------------------
"if &compatible
" set nocompatible " Be iMproved
"endif
"
"" Required:
"set runtimepath^=/Users/takeuchishun/.vim/bundle/repos/github.com/Shougo/dein.vim
"
"" Required:
"call dein#begin(expand('/Users/takeuchishun/.vim/bundle'))
"
"" Let dein manage dein
"" Required:
"call dein#add('Shougo/dein.vim')
"call dein#add('Shougo/unite.vim')
""call dein#add('Shougo/neossh.vim')
""call dein#add('Shougo/vimfiler')
""call dein#add('Shougo/vimproc')
"call dein#add('tomasr/molokai')
"
"" Add or remove your plugins here:
"call dein#add('Shougo/neosnippet.vim')
"call dein#add('Shougo/neosnippet-snippets')
"
"" You can specify revision/branch/tag.
"call dein#add('Shougo/vimshell', { 'rev': '3787e5' })
""call dein#add('scrooloose/nerdtree')
"
"" Required:
"call dein#end()
"
"" Required:
"filetype plugin indent on
"
"" If you want to install not installed plugins on startup.
"if dein#check_install()
" call dein#install()
"endif
"
"" "End dein Scripts-------------------------
noremap <C-j> <esc>
noremap! <C-j> <esc>
"nnoremap <silent><C-e> :NERDTreeToggle<CR>
set number
set title
set ambiwidth=double
set tabstop=4
set expandtab
set shiftwidth=4
set smartindent
set list
set listchars=tab:»-,trail:-,eol:↲,extends:»,precedes:«,nbsp:%
set nrformats-=octal
set hidden
set history=50
set virtualedit=block
set whichwrap=b,s,[,],<,>
set backspace=indent,eol,start
set wildmenu
let g:netrw_bufsettings = 'noma nomod number nobl nowrap ro'
" netrwは常にtree view
let g:netrw_liststyle = 3
" CVSと.で始まるファイルは表示しない
let g:netrw_list_hide = 'CVS,\(^\|\s\s\)\zs\.\S\+'
" 'v'でファイルを開くときは右側に開く。(デフォルトが左側なので入れ替え)
let g:netrw_altv = 1
" 'o'でファイルを開くときは下側に開く。(デフォルトが上側なので入れ替え)
let g:netrw_alto = 1
let g:vimfiler_as_default_explorer=1
"colorscheme molokai
"autocmd VimEnter * execute 'NERDTree'