feat: add aautostart tmux if available

This commit is contained in:
max_richter 2021-08-23 18:47:23 +02:00
parent a5e5181b93
commit 5842e96acd
2 changed files with 8 additions and 9 deletions

View File

@ -5,13 +5,16 @@ source $HOME/.dotfiles/configs/zsh/update-repo.zsh
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi fi
ZSH_THEME="powerlevel10k/powerlevel10k" ZSH_THEME="powerlevel10k/powerlevel10k"
ZSH_TMUX_AUTOSTART=true
plugins=( plugins=(
git git
asdf asdf
docker docker
zsh-autosuggestions tmux
zsh-autosuggestions
) )
eval `dircolors ~/.dircolors` eval `dircolors ~/.dircolors`
@ -70,14 +73,11 @@ fi
#If fdfind is installed force fzf to use it #If fdfind is installed force fzf to use it
if [ -s $(which fdfind) ]; then if [ -s $(which fdfind) ]; then
# Symlink fdfind to fd if not already symlinked
[[ ! -s $(which fd) ]] && ln -s $(which fdfind) ~/.local/bin/fd
# Feed the output of fd into fzf # Feed the output of fd into fzf
# fd --type f | fzf # fdfind --type f | fzf
# Setting fd as the default source for fzf # Setting fd as the default source for fzf
export FZF_DEFAULT_COMMAND='fd --type f' export FZF_DEFAULT_COMMAND='fdfind --type f'
# To apply the command to CTRL-T as well # To apply the command to CTRL-T as well
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
@ -90,7 +90,5 @@ fi
# uninstall by removing these lines # uninstall by removing these lines
[[ -f ~/.config/tabtab/zsh/__tabtab.zsh ]] && . ~/.config/tabtab/zsh/__tabtab.zsh || true [[ -f ~/.config/tabtab/zsh/__tabtab.zsh ]] && . ~/.config/tabtab/zsh/__tabtab.zsh || true
export PNPM_HOME="/home/jim/.local/share/pnpm" export PNPM_HOME="$HOME/.local/share/pnpm"
export PATH="$PNPM_HOME:$PATH" export PATH="$PNPM_HOME:$PATH"
alias luamake=/home/jim/bin/lua-language-server/3rd/luamake/luamake

View File

@ -116,6 +116,7 @@ echo "-- linking .dotfiles --"
linkFile .bashrc linkFile .bashrc
linkFile .p10k.zsh linkFile .p10k.zsh
linkFile .dircolors linkFile .dircolors
linkFile .tmux.conf
echo "-----------------------------------" echo "-----------------------------------"