diff options
| -rw-r--r-- | 01-aliases.zsh | 2 | ||||
| -rw-r--r-- | prompts/hadron.zsh | 4 | ||||
| -rw-r--r-- | zshrc | 5 |
3 files changed, 8 insertions, 3 deletions
diff --git a/01-aliases.zsh b/01-aliases.zsh index 478942a..e89ec43 100644 --- a/01-aliases.zsh +++ b/01-aliases.zsh @@ -6,5 +6,5 @@ alias put="xclip -selection c -o" whence exa > /dev/null if [ "$?" -eq 0 ] ; then - alias 'ls=exa' + alias 'ls=exa -g' fi diff --git a/prompts/hadron.zsh b/prompts/hadron.zsh index 700702a..ef0cebb 100644 --- a/prompts/hadron.zsh +++ b/prompts/hadron.zsh @@ -1,8 +1,8 @@ GREEN="%{\x1b[01;32m%}" PURPLE="%{\x1b[01;35m%}" -PROMPT_END=" · " -PROMPT_REND=" · " +PROMPT_END=" • " +PROMPT_REND=" • " PROMPT='$(simple_prompt ${GREEN} ${PURPLE})' RPROMPT='$(simple_rprompt ${GREEN} ${PURPLE})' @@ -1,6 +1,11 @@ # Loads the other files in order. This file should not be touched. It is used # simply as a way to load the other files in the .zshrc.d folder. +source /etc/profile + for f in $HOME/.zshrc.d/*.zsh ; do source "$f" done || true + +[ -f "/home/rahm/.ghcup/env" ] && . "/home/rahm/.ghcup/env" # ghcup-env +[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh |