Skip to content

Instantly share code, notes, and snippets.

@IanoNjuguna
Last active August 27, 2023 19:50
Show Gist options
  • Save IanoNjuguna/390dc8198e66f4c43fb5549aa7ec3f4c to your computer and use it in GitHub Desktop.
Save IanoNjuguna/390dc8198e66f4c43fb5549aa7ec3f4c to your computer and use it in GitHub Desktop.
Additional Commands For My BashRC Config File
# sign commits alias
alias commit='commit -S'
# gnupg - verifies signed commits in GitHub
export GPG_TTY=$(tty)
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
# compile C programs (Aggresive compiler)
alias gcc='gcc -Wall -Werror -pedantic -Wextra -std=gnu89'
# vim == nvim
alias vim='nvim'
# set node path
export PATH=/usr/bin/node:$PATH
export PATH="$HOME/.npm/versions/node/$(npm --version)/bin:$PATH"
export GPG_TTY=$(tty)
# Set Python alias
alias python='python3'
# Add usr/.local/bin to path
export PATH="$PATH:/home/inc/.local/bin"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment