Last active
November 7, 2022 16:41
-
-
Save roblogic/acbae180c3f5d1f44513aaa51e5de858 to your computer and use it in GitHub Desktop.
Import new colorschemes to MacVim via Terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
# refs: | |
# https://vimcolorschemes.com/lifepillar/vim-gruvbox8 | |
# https://github.com/lifepillar/vim-gruvbox8 | |
cd ~/.vim/colors | |
chmod 777 . | |
curl https://raw.githubusercontent.com/lifepillar/vim-gruvbox8/master/colors/gruvbox8.vim -o gruvbox8.vim | |
curl https://raw.githubusercontent.com/lifepillar/vim-gruvbox8/master/colors/gruvbox8_hard.vim -o gruvbox8_hard.vim | |
curl https://raw.githubusercontent.com/lifepillar/vim-gruvbox8/master/colors/gruvbox8_soft.vim -o gruvbox8_soft.vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment