Compare commits

..

No commits in common. "e947463310a365db2f5ef483e37abe46e7b6d8dd" and "2eddeed8b6fbdf08f231a62ca1eaf5e887e2ca3e" have entirely different histories.

4 changed files with 4 additions and 3 deletions

View File

@ -100,7 +100,7 @@ bind-key Right select-pane -R
bind-key R source-file ~/.tmux.conf
# Keybinding for swapping the current and marked windows.
# bind-key \ swap-window
bind-key \ swap-window
# Keybindings for swapping adjacent windows.
bind-key < swap-window -t -1

View File

@ -11,7 +11,7 @@ fi
if [[ $lang ]]; then
for lng in $(echo $lang); do
for version in $(asdf list $lng | sort -nrk1,1 | eval "fzf ${FZF_DEFAULT_OPTS} -m --header='[asdf:${lng}:clean]'")
do asdf uninstall $lng $version
do asdf uninstall $lng $version
done
done
fi

View File

@ -6,7 +6,7 @@ lang=${1}
asdf plugin-list-all &>/dev/null 2>&1
if [[ -z $lang ]]; then
lang=$(asdf plugin-list all | eval "fzf ${FZF_DEFAULT_OPTS} -m --header='[asdf:install]'" | awk '{print $1}')
lang=$(asdf plugin-list-all | eval "fzf ${FZF_DEFAULT_OPTS} -m --header='[asdf:install]'")
fi
if [[ $lang ]]; then

View File

@ -31,6 +31,7 @@ zplug "lib/completion", from:oh-my-zsh
zplug "plugins/git", from:oh-my-zsh
zplug "plugins/docker", from:oh-my-zsh
zplug "plugins/bundler", from:oh-my-zsh
zplug "plugins/asdf", from:oh-my-zsh
zplug "zsh-users/zsh-completions"