config/mkshrc

27 lines
766 B
Plaintext
Raw Permalink Normal View History

2022-07-26 17:53:44 +00:00
# Aliases
alias ls="ls --color=auto"
# Show all the things when using gcc
alias gcc="gcc -Wall"
# Keybinds
# ^L clears screen (by default only ^[^L)
bind ^L=clear-screen
# Prompt
# Prompt colour strings. To save typing them out every time I want to use them!
2022-10-07 13:39:42 +00:00
export text_black=''
export text_red=''
export text_green=''
export text_brown=''
export text_blue=''
export text_purple=''
export text_cyan=''
export text_white=''
export end_format=''
2022-07-26 17:53:44 +00:00
2022-10-07 13:39:42 +00:00
# PS1="${text_brown}$(get_username)@$(get_hostname)${end_format} $(get_cwd) % "
# PS1="^[31m${USER:=$(id -un)}""@${HOSTNAME:=$(hostname)} "\$PWD" % "
# PS1="hi"
PS1="${text_brown}${USER:=$(id -un)}@${HOSTNAME:=$(hostname)}${end_format} \${PWD/\/home\/cren/\~} % "