summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bashrc1
-rw-r--r--.config/dircolors1
-rw-r--r--.config/zsh/.zshrc4
3 files changed, 3 insertions, 3 deletions
diff --git a/.bashrc b/.bashrc
index 0400ba8..a1a31b2 100644
--- a/.bashrc
+++ b/.bashrc
@@ -5,5 +5,4 @@
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
-alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
diff --git a/.config/dircolors b/.config/dircolors
index d99ef64..395b460 100644
--- a/.config/dircolors
+++ b/.config/dircolors
@@ -24,6 +24,7 @@ TERM terminator
TERM tmux*
TERM vt100
TERM xterm*
+TERM alacritty
# Below are the color init strings for the basic file types.
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc
index 2ac0cd5..5e4138e 100644
--- a/.config/zsh/.zshrc
+++ b/.config/zsh/.zshrc
@@ -7,10 +7,10 @@ autoload -U colors && colors
PS1="%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$ "
# Set LS_COLORS via dircolors.
-[[ -f ~/.config/dircolors ]] && eval "$(dircolors ~/.config/dircolors)"
+[[ -f $HOME/.config/dircolors ]] && eval "$(dircolors $HOME/.config/dircolors)"
# Load aliases if existent.
-[[ -f ~/.config/aliasrc ]] && . ~/.config/aliasrc
+[[ -f $HOME/.config/aliasrc ]] && . ~/.config/aliasrc
# History cache.
HISTFILE=~/.cache/zsh/history