###前提・実現したいこと
現在、nvimのプラグイン管理をdein.vimで行っていて、tomlに記載したカラースキームをnvimに反映させたい
###発生している問題・エラーメッセージ
dein.tomlに記載したカラースキームがnvimに反映されない
###該当のソースコード
<init.vim>
1 set number
2 set title
3 set showmatch
4 syntax enable
5 set tabstop=4
6 set smartindent
7 "set background=dark
8 "colorscheme solarized
9 "=======================keymap================================
10 nnoremap <silent><C-e> :NERDTreeToggle<CR>
11
12
13 "=========================dein=========================
14 "dein settings {{{
15 if &compatible
16 set nocompatible
17 endif
18
19 " reset augroup
20 augroup MyAutoCmd
21 autocmd!
22 augroup END
23
24 let s:cache_home = empty($XDG_CACHE_HOME) ? expand('$HOME/.cache') : $XDG_CACHE_HOME
25 let s:dein_dir = s:cache_home . '/dein'
26 let s:dein_repo_dir = s:dein_dir . '/repos/github.com/Shougo/dein.vim'
27
28 if !isdirectory(s:dein_repo_dir)
29 call system('git clone https://github.com/Shougo/dein.vim ' . shellescape(s:dein_repo_dir))
30 endif
31 execute 'set runtimepath^=' . s:dein_repo_dir
32
33 let g:dein#install_max_processes = 16
34 let g:dein#install_progress_type = 'title'
35 let g:dein#enable_notification = 1
36 let s:toml = '/.config/dein/dein.toml'/.config/dein/dein_lazy.toml'
37 let s:lazy_toml = '
38
39 if dein#load_state(s:dein_dir)
40 call dein#begin(s:dein_dir, [s:toml, s:lazy_toml])
41 call dein#load_toml(s:toml, {'lazy': 0})
42 call dein#load_toml(s:lazy_toml, {'lazy': 1})
43 call dein#end()
44 call dein#save_state()
45 endif
46
47 if has('vim_starting') && dein#check_install()
48 call dein#install()
49 endif
50 " }}}
<dein.toml>
1 [[plugins]]
2 repo = 'Shougo/dein.vim'
3
4 [[plugins]] # toml syntax
5 repo = 'cespare/vim-toml'
6 on_ft = 'toml'
7
8
9 #[[plugins]]
10 #repo = 'altercation/vim-color-solarized'
11
12 # TMUX
13 repo = 'tmux-plugins/vim-tmux'
14 on_ft = 'tmux'
15
16
17 [[plugins]] # ファイルをツリー構造で表示可能
18 repo = 'scrooloose/nerdtree'
19
20 [[plugins]]
21 repo = 'Shougo/unite.vim'
22
~
dein.toml
###試したこと
他の方が公開しているように設定ファイルを記載しました。
init.vim,dein.tomlの階層はそれぞれ
~/.config/nvim/init.vim
~/.config/dein/dein.toml です
###補足情報(言語/FW/ツール等のバージョンなど)
nerdtreeなどの他のプラグインは使えているようです。
またiterm2を利用しています。
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/06/11 09:11
2016/06/15 23:47
2016/06/18 15:26
2016/06/26 01:57