summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-10 13:36:30 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-10 13:36:30 -0700
commit238e3c922ef3ef9742a7a2e03e21e160baa361c7 (patch)
tree73613c1e4d220e7271deccb40ba3cadedead4c65 /.config
parent316115a37e510e51bdc964451813e6722341e320 (diff)
Fix dircolors file for alacritty
Diffstat (limited to '.config')
-rw-r--r--.config/dircolors1
-rw-r--r--.config/zsh/.zshrc4
2 files changed, 3 insertions, 2 deletions
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