mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 13:35:30 +00:00
uncommented zim installation
This commit is contained in:
34
install.sh
34
install.sh
@@ -6,24 +6,24 @@ if [ `cat /etc/passwd | grep $USER | awk -F ':' '{print $7}'` != "/bin/zsh" ]; t
|
||||
chsh -s $(which zsh)
|
||||
fi
|
||||
|
||||
# # ZIM Installation
|
||||
# if [ ! -d "$HOME/.zim" ]; then
|
||||
# echo "Installing ZIM"
|
||||
# git clone --recursive --depth=1 https://github.com/zimfw/zimfw.git \
|
||||
# ${ZDOTDIR:-${HOME}}/.zim
|
||||
# else
|
||||
# echo "ZIM already exists."
|
||||
# fi
|
||||
# ZIM Installation
|
||||
if [ ! -d "$HOME/.zim" ]; then
|
||||
echo "Installing ZIM"
|
||||
git clone --recursive --depth=1 https://github.com/zimfw/zimfw.git \
|
||||
${ZDOTDIR:-${HOME}}/.zim
|
||||
else
|
||||
echo "ZIM already exists."
|
||||
fi
|
||||
|
||||
# # Powerlevel9k Theme
|
||||
# if [ ! -d "$HOME/.zim/modules/prompt/external-themes/powerlevel9k" ]; then
|
||||
# echo "Installing Powerlevel9k theme"
|
||||
# git clone --depth=1 https://github.com/bhilburn/powerlevel9k.git \
|
||||
# ~/.zim/modules/prompt/external-themes/powerlevel9k
|
||||
# ln -s ~/.zim/modules/prompt/external-themes/powerlevel9k/powerlevel9k.zsh-theme ~/.zim/modules/prompt/functions/prompt_powerlevel9k_setup
|
||||
# else
|
||||
# echo "Powerlevel9k already exists."
|
||||
# fi
|
||||
# Powerlevel9k Theme
|
||||
if [ ! -d "$HOME/.zim/modules/prompt/external-themes/powerlevel9k" ]; then
|
||||
echo "Installing Powerlevel9k theme"
|
||||
git clone --depth=1 https://github.com/bhilburn/powerlevel9k.git \
|
||||
~/.zim/modules/prompt/external-themes/powerlevel9k
|
||||
ln -s ~/.zim/modules/prompt/external-themes/powerlevel9k/powerlevel9k.zsh-theme ~/.zim/modules/prompt/functions/prompt_powerlevel9k_setup
|
||||
else
|
||||
echo "Powerlevel9k already exists."
|
||||
fi
|
||||
|
||||
# Conda and pip
|
||||
if [ ! -d "$HOME/conda" ]; then
|
||||
|
||||
Reference in New Issue
Block a user