質問編集履歴

2

追記!

2017/05/28 07:07

投稿

satuki-2525
satuki-2525

スコア7

test CHANGED
File without changes
test CHANGED
@@ -28,4 +28,118 @@
28
28
 
29
29
 
30
30
 
31
- 11どうしらいいのかわかりません・・・・
31
+ どうしらいいのかわかりません・・・・
32
+
33
+
34
+
35
+ 自分のやってみたこと!!
36
+
37
+
38
+
39
+
40
+
41
+ Terminal起動!
42
+
43
+
44
+
45
+ $ curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh > install.sh
46
+
47
+ $ sh ./install.sh
48
+
49
+
50
+
51
+
52
+
53
+ NeoBundle Scripts-----------------------------
54
+
55
+ if &compatible
56
+
57
+ set nocompatible " Be iMproved
58
+
59
+ endif
60
+
61
+
62
+
63
+ " Required:
64
+
65
+ set runtimepath^=/home/○○○○/.vim/bundle/neobundle.vim/
66
+
67
+
68
+
69
+ " Required:
70
+
71
+ call neobundle#begin(expand('/home/○○○○/.vim/bundle'))
72
+
73
+
74
+
75
+ " Let NeoBundle manage NeoBundle
76
+
77
+ " Required:
78
+
79
+ NeoBundleFetch 'Shougo/neobundle.vim'
80
+
81
+
82
+
83
+ " Add or remove your Bundles here:
84
+
85
+ NeoBundle 'Shougo/neosnippet.vim'
86
+
87
+ NeoBundle 'Shougo/neosnippet-snippets'
88
+
89
+ NeoBundle 'tpope/vim-fugitive'
90
+
91
+ NeoBundle 'ctrlpvim/ctrlp.vim'
92
+
93
+ NeoBundle 'flazz/vim-colorschemes'
94
+
95
+
96
+
97
+ " You can specify revision/branch/tag.
98
+
99
+ NeoBundle 'Shougo/vimshell', { 'rev' : '3787e5' }
100
+
101
+
102
+
103
+ " Required:
104
+
105
+ call neobundle#end()
106
+
107
+
108
+
109
+ " Required:
110
+
111
+ filetype plugin indent on
112
+
113
+
114
+
115
+ " If there are uninstalled bundles found on startup,
116
+
117
+ " this will conveniently prompt you to install them.
118
+
119
+
120
+
121
+ NeoBundleCheck
122
+
123
+ "End NeoBundle Scripts-------------------------
124
+
125
+
126
+
127
+ こんなふうに書き出しました。
128
+
129
+
130
+
131
+ vimを起動したら.....
132
+
133
+
134
+
135
+ home/satuki/.vimrc の処理中にエラーが検出されました:
136
+
137
+ 行 32:
138
+
139
+ E492: エディタのコマンドではありません: NeobundleCheck
140
+
141
+ 続けるにはENTERを押すかコマンドを入力してください
142
+
143
+
144
+
145
+ ユーザー名が違うってことかな?

1

追記

2017/05/28 07:07

投稿

satuki-2525
satuki-2525

スコア7

test CHANGED
@@ -1 +1 @@
1
- vim プラグインや.vimの設定ファイルの書き方教えてください。
1
+ vim プラグインやvimの設定ファイル(.vimrc)の書き方教えてください。
test CHANGED
@@ -19,3 +19,13 @@
19
19
 
20
20
 
21
21
  http://ameblo.jp/pkshimizu/entry-11745784289.htm
22
+
23
+
24
+
25
+ リンク先にあるとおりにインストールしたり.vimrcに書き込んだり
26
+
27
+ しましたが、Vimを立ち上げてもダメで・・・
28
+
29
+
30
+
31
+ 11どうしらいいのかわかりません・・・・