diff options
Diffstat (limited to 'zsh-no-omzsh/.zshrc')
-rw-r--r-- | zsh-no-omzsh/.zshrc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/zsh-no-omzsh/.zshrc b/zsh-no-omzsh/.zshrc index decf6b7..7523976 100644 --- a/zsh-no-omzsh/.zshrc +++ b/zsh-no-omzsh/.zshrc @@ -37,7 +37,7 @@ function git_info { } setopt PROMPT_SUBST -PROMPT='%F{032}%~$(git_info)%F{032} %(!.#.>) %{$reset_color%}' +PROMPT='%F{032}%~$(git_info)%F{032} %(!.#.>) %F{255}' bindkey "^P" up-line-or-search bindkey "^[[A" history-search-backward @@ -50,6 +50,10 @@ export LANG=en_US.UTF-8 export TERM="xterm-256color" export LSCOLORS="Gxfxcxdxbxegedabagacad" +# Same colors for tab completion and ls +eval "$(dircolors)" +zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} + alias vim="nvim" alias ls='ls --color=auto' |