Compare commits

...

2 Commits

Author SHA1 Message Date
7bb95a8844
Add shell refresh aliias 2023-04-20 14:41:30 -05:00
45d6cb2064
Add RUSTC_WRAPPER envar and broot shell fn install 2023-04-20 14:41:18 -05:00
5 changed files with 8 additions and 7 deletions

1
aliases.d/sh.zsh Normal file
View File

@ -0,0 +1 @@
alias resh="exec ${SHELL} -l"

View File

@ -1 +0,0 @@
/home/daniel/.local/share/broot/launcher/bash/1

View File

@ -1,4 +0,0 @@
This file tells broot the installation of the br function was done.
If there's a problem and you want to install it again run
broot -- install

View File

@ -1,4 +1,5 @@
# broot
if [[ -s ~/.config/broot/launcher/bash/br ]]; then
source ~/.config/broot/launcher/bash/br
if (( $+commands[broot] )); then
eval "$(broot --print-shell-function zsh)"
broot --set-install-state installed
fi

View File

@ -31,6 +31,10 @@ if (( $+commands[fd] )); then
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
fi
if (( $+commands[sccache] )); then
export RUSTC_WRAPPER="$(which sccache)"
fi
# Local environment
if [[ -s ~/.zshenv.local ]]; then
source ~/.zshenv.local