bash config

This commit is contained in:
Robert Perce 2026-01-29 22:29:49 -06:00
commit 53f3cecc55
2 changed files with 16 additions and 0 deletions

12
private_dot_bashrc Executable file
View file

@ -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

View file

@ -0,0 +1,4 @@
alias a="tmux new-session -A -s main"
alias cz="chezmoi"
alias gs="git status"
alias v="nvim"