質問編集履歴

1

追記

2017/11/07 12:26

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -20,6 +20,90 @@
20
20
 
21
21
 
22
22
 
23
+ vimrcの一部はこのような感じです。
24
+
25
+ ```vim
26
+
27
+ " Note: Skip initialization for vim-tiny or vim-small.
28
+
29
+ if 0 | endif
30
+
31
+ "****************************************************
32
+
33
+ "NeoBundle Scripts
34
+
35
+ "****************************************************
36
+
37
+ if &compatible
38
+
39
+ set nocompatible " Be iMproved
40
+
41
+ endif
42
+
43
+
44
+
45
+ " Required:
46
+
47
+ set runtimepath+=~/.vim/bundle/neobundle.vim/
48
+
49
+
50
+
51
+ " Required:
52
+
53
+ call neobundle#begin(expand('~/.vim/bundle/'))
54
+
55
+ "****************************************************
56
+
57
+ "NeoBundle install packages
58
+
59
+ "****************************************************
60
+
61
+ " Let NeoBundle manage NeoBundle
62
+
63
+ " Required:
64
+
65
+ NeoBundleFetch 'Shougo/neobundle.vim'
66
+
67
+
68
+
69
+ " Add or remove your Bundles here:
70
+
71
+ NeoBundle 'scrooloose/nerdtree'
72
+
73
+
74
+
75
+ call neobundle#end()
76
+
77
+
78
+
79
+ " Required:
80
+
81
+ filetype plugin indent on
82
+
83
+
84
+
85
+ NeoBundleCheck
86
+
87
+
88
+
89
+ "****************************************************
90
+
91
+ "Mappings
92
+
93
+ "****************************************************
94
+
95
+ nnoremap ; :
96
+
97
+ nnoremap : ;
98
+
99
+ inoremap <silent> jj <ESC>
100
+
101
+ ```
102
+
103
+
104
+
105
+
106
+
23
107
  どなたかご教示願えませんでしょうか。
24
108
 
25
109
  よろしくお願いします。