diff options
| -rw-r--r-- | .bash_profile | 2 | ||||
| -rw-r--r-- | .bashrc | 15 |
2 files changed, 5 insertions, 12 deletions
diff --git a/.bash_profile b/.bash_profile index 187b090..7d049d9 100644 --- a/.bash_profile +++ b/.bash_profile @@ -4,7 +4,7 @@ if [ -f ~/.profile ]; then source ~/.profile; fi export SUDO="doas" -export TERMINAL="alacritty" +export TERMINAL="st" export BROWSER="librewolf" export EDITOR="kak" export XDG_CONFIG_HOME="$HOME/.config" @@ -19,8 +19,10 @@ alias yta="yt-dlp -f bestaudio -x --audio-format mp3 --sponsorblock-remove spons alias gs="git status" alias gd="git diff" alias gl="git log" +alias glo="git log --oneline" alias gc="git commit" alias ga="git add" +alias make="make -j$(nproc)" # Export 'SHELL' to child processes. Programs such as 'screen' # honor it and otherwise use /bin/sh. @@ -34,17 +36,8 @@ complete -F _command doas PROMPT_DIRTRIM=2 # PS1='\u@\h \w $ ' -PS1='\H [\[\e[94m\]\w\[\e[0m\]] \$ ' - -function red_text() { - RED="\033[91m" - RESET="\033[0m" - echo -ne "$(echo $RED)$1$(echo $RESET)" -} - -function todo() { - echo -e "[$(red_text TODO)]: $1" -} +# PS1='\H [\[\e[94m\]\w\[\e[0m\]] \$ ' +PS1='\h $ ' alias gobr="~/programming/gobr/gobr" ~/programming/gobr/gobr |
