42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
# User env file for interactive and non-interactive zsh(1) shells.
|
|
|
|
#
|
|
# Copyright (C) 2019, 2022 VHS <vhsdev@tutanota.com>
|
|
#
|
|
# This file is part of Archuro.
|
|
#
|
|
# Archuro is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Archuro is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
# =========================================================================== #
|
|
# Color output not directed at the terminal - @see also zshrc
|
|
# =================================================================== #
|
|
|
|
# GREP(1)
|
|
#
|
|
# Mark up the matching text with the expression stored in
|
|
# GREP_COLOR environment variable. The possible values of when can
|
|
# be `never', `always' or `auto'
|
|
export GREP_COLOR=always
|
|
|
|
# LS(1)
|
|
#
|
|
# Color sequences are normally disabled if the output isn't
|
|
# directed to a terminal. This can be overridden by set-
|
|
# ting this flag. The TERM variable still needs to refer-
|
|
# ence a color capable terminal however otherwise it is not
|
|
# possible to determine which color sequences to use.
|
|
export CLICOLOR_FORCE=true
|
|
. "$HOME/.cargo/env"
|