This commit is contained in:
ArgentumCation 2023-09-14 13:21:58 -04:00
parent 19eddf5ab4
commit 3ab0904979
4 changed files with 13 additions and 8 deletions

View file

@ -1 +1,3 @@
[[ -f ~/.bashrc ]] && . ~/.bashrc [[ -f ~/.bashrc ]] && . ~/.bashrc
source /home/mira/.config/broot/launcher/bash/br

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash #! /bin/bash
# Note, I don't really use bash so this may be kinda sparse, but you may be able to copy stuff from .zshrc # Note, I don't really use bash so this may be kinda sparse, but you may be able to copy stuff from .zshrc
# Source global definitions # Source global definitions
@ -105,3 +105,5 @@ else #Fallback prompt
fi fi
PATH=$OLDPATH PATH=$OLDPATH
unset OLDPATH unset OLDPATH
source /home/mira/.config/broot/launcher/bash/br

View file

@ -15,23 +15,22 @@ XDG_CONFIG_HOME="$HOME/.config"
XDG_STATE_HOME="$HOME/.local/state" XDG_STATE_HOME="$HOME/.local/state"
XDG_CACHE_HOME="$HOME/.cache" XDG_CACHE_HOME="$HOME/.cache"
# [[ "$TERM_PROGRAM" = "vscode" ]] && . "$(code --locate-shell-integration-path $0)" # [[ "$TERM_PROGRAM" = "vscode" ]] && . "$(code --locate-shell-integration-path $0)"
# set PATH so it includes user's private bin if it exists # set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then if [ -d "$HOME/bin" ]; then
PATH="$HOME/bin:$PATH" PATH="$HOME/bin:$PATH"
fi fi
# set PATH so it includes user's private bin if it exists # set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then if [ -d "$HOME/.local/bin" ]; then
PATH="$HOME/.local/bin:$PATH" PATH="$HOME/.local/bin:$PATH"
fi fi
# Source Cargo Environment # Source Cargo Environment
if [[ -f "$HOME/.cargo/env" ]]; then if [[ -f "$HOME/.cargo/env" ]]; then
. "$HOME/.cargo/env"; . "$HOME/.cargo/env"
#else #else
# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh; # curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh;
fi fi

View file

@ -1,4 +1,4 @@
#!/usr/bin/env zsh #!/bin/zsh
# Runs for interactive shells # Runs for interactive shells
export START="${START:=$(date '+%s.%N')}" export START="${START:=$(date '+%s.%N')}"
@ -156,3 +156,5 @@ checkCommand starship && eval "$(starship init zsh)"
unset OLDPATH unset OLDPATH
unset START unset START
unset END unset END
source /home/mira/.config/broot/launcher/bash/br