From bf75bca62def6ea1c39ebfede0391e9b4530ece2 Mon Sep 17 00:00:00 2001 From: titubery <17917040+Titubery@users.noreply.github.com> Date: Thu, 21 Nov 2019 01:56:22 +0800 Subject: [PATCH] add some colorscheme --- install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 6373486..bdcbd0f 100755 --- a/install.sh +++ b/install.sh @@ -358,7 +358,11 @@ function copy_files() mkdir ~/.vim rm -rf ~/.vim/colors - ln -s ${PWD}/colors ~/.vim + mkdir -p ~/.vim/colors + cp ${PWD}/colors/* ~/.vim/colors/ + curl -sLf https://raw.githubusercontent.com/morhetz/gruvbox/master/colors/gruvbox.vim > ~/.vim/colors/gruvbox.vim + curl -sLf https://raw.githubusercontent.com/sjl/badwolf/master/colors/badwolf.vim > ~/.vim/colors/badwolf.vim + curl -sLf https://raw.githubusercontent.com/junegunn/seoul256.vim/master/colors/seoul256.vim > ~/.vim/colors/seoul256.vim rm -rf ~/.vim/ftplugin ln -s ${PWD}/ftplugin ~/.vim