Migration to slimline.
This commit is contained in:
parent
9c47fdf972
commit
622b9327d2
33
install.sh
33
install.sh
@ -33,40 +33,11 @@ ln -sf ~/.dotfiles/tmux.conf ~/.tmux.conf
|
|||||||
# cleaning
|
# cleaning
|
||||||
rm -rf ~/.zsh* ~/.oh-my-zsh
|
rm -rf ~/.zsh* ~/.oh-my-zsh
|
||||||
# installing
|
# installing
|
||||||
mkdir ~/.zsh
|
|
||||||
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
|
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
|
||||||
git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
|
git clone https://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
|
||||||
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
|
||||||
git clone https://github.com/popstas/zsh-command-time.git ~/.oh-my-zsh/custom/plugins/command-time
|
git clone https://github.com/popstas/zsh-command-time.git ~/.oh-my-zsh/custom/plugins/command-time
|
||||||
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
|
git clone --recursive https://github.com/mengelbrecht/slimline.git ~/.oh-my-zsh/custom/themes/slimline
|
||||||
sed -i -e 's/ZSH_THEME="robbyrussell"/ZSH_THEME="agnoster"/' ~/.zshrc
|
cp ~/.dotfiles/zsh/zshrc ~/.zshrc
|
||||||
sed -i -e 's/plugins=(git)/plugins=(git kube-ps1 command-time zsh-autosuggestions zsh-syntax-highlighting)/' ~/.zshrc
|
|
||||||
sed -i -e 's/# CASE_SENSITIVE/CASE_SENSITIVE/' ~/.zshrc
|
|
||||||
if [ ! `whoami` = "root" ]; then
|
|
||||||
echo 'export DEFAULT_USER=$LOGNAME' >> ~/.zshrc
|
|
||||||
fi
|
|
||||||
echo "PROMPT=\$PROMPT'\$(kube_ps1) '" >> ~/.zshrc
|
|
||||||
echo "ZSH_COMMAND_TIME_MIN_SECONDS=2" >> ~/.zshrc
|
|
||||||
echo 'ZSH_COMMAND_TIME_MSG="(took $fg[yellow]%s$fg[default])"' >> ~/.zshrc
|
|
||||||
echo "[ -e ~/.zshrc.local ] && source ~/.zshrc.local" >> ~/.zshrc
|
|
||||||
touch ~/.zshrc.local
|
touch ~/.zshrc.local
|
||||||
source ~/.zshrc
|
source ~/.zshrc
|
||||||
|
|
||||||
### fish
|
|
||||||
## cleaning
|
|
||||||
#rm -rf ~/.config/fish ~/.local/share/fish ~/.config/omf ~/.local/share/omf
|
|
||||||
## installing omf
|
|
||||||
#curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > ~/install.omf
|
|
||||||
#fish ~/install.omf --noninteractive
|
|
||||||
#fish -c 'omf install bobthefish'
|
|
||||||
#rm -rf ~/install.omf
|
|
||||||
## installing misc settings
|
|
||||||
#mkdir -p ~/.config/fish/functions
|
|
||||||
#echo 'function fish_greeting; end' > ~/.config/fish/functions/fish_greeting.fish
|
|
||||||
#echo 'function fish_right_prompt; end' > ~/.config/fish/functions/fish_right_prompt.fish
|
|
||||||
#touch ~/.fish.local
|
|
||||||
#echo 'set -x VIRTUAL_ENV_DISABLE_PROMPT 1' > ~/.config/fish/config.fish
|
|
||||||
#echo 'set -g theme_title_use_abbreviated_path no' >> ~/.config/fish/config.fish
|
|
||||||
#echo 'set -g fish_prompt_pwd_dir_length 0' >> ~/.config/fish/config.fish
|
|
||||||
#echo 'set -g theme_display_user yes' >> ~/.config/fish/config.fish
|
|
||||||
#echo 'source ~/.fish.local' >> ~/.config/fish/config.fish
|
|
||||||
|
15
legacy/agnoster.zsh
Normal file
15
legacy/agnoster.zsh
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
export ZSH=$HOME/.oh-my-zsh
|
||||||
|
ZSH_THEME="agnoster"
|
||||||
|
CASE_SENSITIVE="true"
|
||||||
|
ENABLE_CORRECTION="true"
|
||||||
|
plugins=(git kube-ps1 command-time zsh-autosuggestions zsh-syntax-highlighting)
|
||||||
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
export DEFAULT_USER=$LOGNAME
|
||||||
|
source ~/.dotfiles/zsh/abbr_pwd
|
||||||
|
prompt_dir() {
|
||||||
|
prompt_segment blue $CURRENT_FG $(felix_pwd_abbr)
|
||||||
|
}
|
||||||
|
PROMPT=$PROMPT'$(kube_ps1) '
|
||||||
|
ZSH_COMMAND_TIME_MIN_SECONDS=2
|
||||||
|
ZSH_COMMAND_TIME_MSG="(took $fg[yellow]%s$fg[default])"
|
||||||
|
[ -e ~/.zshrc.local ] && source ~/.zshrc.local
|
17
legacy/fish.conf
Normal file
17
legacy/fish.conf
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# cleaning
|
||||||
|
rm -rf ~/.config/fish ~/.local/share/fish ~/.config/omf ~/.local/share/omf
|
||||||
|
# installing omf
|
||||||
|
curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > ~/install.omf
|
||||||
|
fish ~/install.omf --noninteractive
|
||||||
|
fish -c 'omf install bobthefish'
|
||||||
|
rm -rf ~/install.omf
|
||||||
|
# installing misc settings
|
||||||
|
mkdir -p ~/.config/fish/functions
|
||||||
|
echo 'function fish_greeting; end' > ~/.config/fish/functions/fish_greeting.fish
|
||||||
|
echo 'function fish_right_prompt; end' > ~/.config/fish/functions/fish_right_prompt.fish
|
||||||
|
touch ~/.fish.local
|
||||||
|
echo 'set -x VIRTUAL_ENV_DISABLE_PROMPT 1' > ~/.config/fish/config.fish
|
||||||
|
echo 'set -g theme_title_use_abbreviated_path no' >> ~/.config/fish/config.fish
|
||||||
|
echo 'set -g fish_prompt_pwd_dir_length 0' >> ~/.config/fish/config.fish
|
||||||
|
echo 'set -g theme_display_user yes' >> ~/.config/fish/config.fish
|
||||||
|
echo 'source ~/.fish.local' >> ~/.config/fish/config.fish
|
13
zsh/zshrc
Normal file
13
zsh/zshrc
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
export ZSH=$HOME/.oh-my-zsh
|
||||||
|
ZSH_THEME="agnoster"
|
||||||
|
CASE_SENSITIVE="true"
|
||||||
|
ENABLE_CORRECTION="true"
|
||||||
|
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
|
||||||
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
|
source ~/slimline/slimline.zsh
|
||||||
|
SLIMLINE_USER_HOST_INFO_FORMAT="%F{green}|user|%F{white}@%F{cyan}|host|%f"
|
||||||
|
SLIMLINE_SYMBOL_WORKING_FORMAT="%F{red}➜%f"
|
||||||
|
SLIMLINE_SYMBOL_READY_FORMAT="%F{white}➜%f"
|
||||||
|
SLIMLINE_MAX_EXEC_TIME=2
|
||||||
|
[ -e ~/.zshrc.local ] && source ~/.zshrc.local
|
Loading…
Reference in New Issue
Block a user