feat: add aautostart tmux if available
This commit is contained in:
parent
a5e5181b93
commit
5842e96acd
@ -5,12 +5,15 @@ 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
|
||||||
|
tmux
|
||||||
zsh-autosuggestions
|
zsh-autosuggestions
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -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
|
|
||||||
|
Loading…
Reference in New Issue
Block a user