From 53f3cecc55c3befffae0dbd32b4422c8472ae842 Mon Sep 17 00:00:00 2001 From: Robert Perce Date: Thu, 29 Jan 2026 22:29:49 -0600 Subject: [PATCH] bash config --- private_dot_bashrc | 12 ++++++++++++ private_dot_config/private_bash/private_cmds.bash | 4 ++++ 2 files changed, 16 insertions(+) create mode 100755 private_dot_bashrc create mode 100644 private_dot_config/private_bash/private_cmds.bash diff --git a/private_dot_bashrc b/private_dot_bashrc new file mode 100755 index 0000000..5e7f6d9 --- /dev/null +++ b/private_dot_bashrc @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +blue="\[\e[38;5;50m\]" +rst="\[\e0m\]" +PS1="╭╢$blue\w$rst\n╰╼ " + +function conf() { + fname="${XDG_CONFIG_HOME:-.config}/$1" + test -f "$fname" && source "$fname" +} + +conf bash/cmds.bash diff --git a/private_dot_config/private_bash/private_cmds.bash b/private_dot_config/private_bash/private_cmds.bash new file mode 100644 index 0000000..640b8be --- /dev/null +++ b/private_dot_config/private_bash/private_cmds.bash @@ -0,0 +1,4 @@ +alias a="tmux new-session -A -s main" +alias cz="chezmoi" +alias gs="git status" +alias v="nvim"