특이한 위치의 컬러 파일로 vim을 실행하는 방법은 무엇입니까?

특이한 위치의 컬러 파일로 vim을 실행하는 방법은 무엇입니까?

다음과 같이 bash 별칭을 만들어 보았습니다.

alias vi='vim -u /path/to/conf/.vimrc'

잘 작동하지만 컬러 파일을 추가하면 실패합니다.

vim -u /path/to/conf/.vimrc -S /path/to/conf/colors/foobar.vim :

:

E185: Cannot find color scheme 'foobar'

나는 vimrc에 있습니다 :

source /full/path/to/color/foobar.vim
color foobar

내 색상/foobar.vim에서:

let g:colors_name = "foobar"

if &term=~ "xterm"
    set term=xterm-256color
endif
if &term=~ "linux"
    colorscheme default
else
    colorscheme foobar
endif

혼자가 아닐 때 서버에서 특별한 구성을 사용하고 있기 때문에 기본 ~/.vim 디렉터리에 파일을 넣을 수 없습니다. ​​사용자의 ~/.vim 파일을 가져올 때 나만의 구성을 갖고 싶습니다. 루트의 bashrc .

관련 정보