From 3ab0904979f8011d6fabba2422420734800a4da2 Mon Sep 17 00:00:00 2001 From: ArgentumCation Date: Thu, 14 Sep 2023 13:21:58 -0400 Subject: [PATCH] updates --- executable_dot_bash_profile | 2 ++ executable_dot_bashrc | 4 +++- executable_dot_env | 11 +++++------ executable_dot_zshrc | 4 +++- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/executable_dot_bash_profile b/executable_dot_bash_profile index 3f56aa0..1a4a979 100644 --- a/executable_dot_bash_profile +++ b/executable_dot_bash_profile @@ -1 +1,3 @@ [[ -f ~/.bashrc ]] && . ~/.bashrc + +source /home/mira/.config/broot/launcher/bash/br diff --git a/executable_dot_bashrc b/executable_dot_bashrc index 2a3d26e..bcd4c79 100644 --- a/executable_dot_bashrc +++ b/executable_dot_bashrc @@ -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 diff --git a/executable_dot_env b/executable_dot_env index 67fb858..119aab0 100644 --- a/executable_dot_env +++ b/executable_dot_env @@ -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 diff --git a/executable_dot_zshrc b/executable_dot_zshrc index a5d9587..08848a7 100644 --- a/executable_dot_zshrc +++ b/executable_dot_zshrc @@ -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