Compare commits

...

3 Commits

Author SHA1 Message Date
Anton Zadvorny e947463310 Fix tmux config 2019-12-28 18:39:40 +03:00
Anton Zadvorny 14385332a4 Remove bundler plugin 2019-12-28 18:29:10 +03:00
Anton Zadvorny 92b4363a68 Fix asdf commands 2019-12-28 18:28:55 +03:00
4 changed files with 3 additions and 4 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]'")
lang=$(asdf plugin-list all | eval "fzf ${FZF_DEFAULT_OPTS} -m --header='[asdf:install]'" | awk '{print $1}')
fi
if [[ $lang ]]; then

View File

@ -31,7 +31,6 @@ 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"