updates
This commit is contained in:
parent
19eddf5ab4
commit
3ab0904979
4 changed files with 13 additions and 8 deletions
|
|
@ -1 +1,3 @@
|
|||
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
||||
|
||||
source /home/mira/.config/broot/launcher/bash/br
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
# Source global definitions
|
||||
|
|
@ -105,3 +105,5 @@ else #Fallback prompt
|
|||
fi
|
||||
PATH=$OLDPATH
|
||||
unset OLDPATH
|
||||
|
||||
source /home/mira/.config/broot/launcher/bash/br
|
||||
|
|
|
|||
|
|
@ -15,24 +15,23 @@ XDG_CONFIG_HOME="$HOME/.config"
|
|||
XDG_STATE_HOME="$HOME/.local/state"
|
||||
XDG_CACHE_HOME="$HOME/.cache"
|
||||
|
||||
|
||||
# [[ "$TERM_PROGRAM" = "vscode" ]] && . "$(code --locate-shell-integration-path $0)"
|
||||
|
||||
# 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"
|
||||
fi
|
||||
|
||||
# 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"
|
||||
fi
|
||||
|
||||
# Source Cargo Environment
|
||||
if [[ -f "$HOME/.cargo/env" ]]; then
|
||||
. "$HOME/.cargo/env";
|
||||
#else
|
||||
# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh;
|
||||
. "$HOME/.cargo/env"
|
||||
#else
|
||||
# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh;
|
||||
fi
|
||||
|
||||
# Source Nix Environment
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env zsh
|
||||
#!/bin/zsh
|
||||
# Runs for interactive shells
|
||||
|
||||
export START="${START:=$(date '+%s.%N')}"
|
||||
|
|
@ -156,3 +156,5 @@ checkCommand starship && eval "$(starship init zsh)"
|
|||
unset OLDPATH
|
||||
unset START
|
||||
unset END
|
||||
|
||||
source /home/mira/.config/broot/launcher/bash/br
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue