From 05b7e695cd84d0ddaf0e4ebaefe6ffac64e41b4b Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Thu, 3 Sep 2020 09:24:29 +0200 Subject: [PATCH] Add less output for zsh --- dotfiles/bash/bashrc | 3 ++- dotfiles/zsh/zprofile | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/dotfiles/bash/bashrc b/dotfiles/bash/bashrc index 21451bd..3f604f8 100644 --- a/dotfiles/bash/bashrc +++ b/dotfiles/bash/bashrc @@ -1,4 +1,5 @@ -# Personal BASHRC +# ~/.bashrc +# # Source the originaly generated bashrc . ~/SetupCockpit/dotfiles/bash/original_bashrc diff --git a/dotfiles/zsh/zprofile b/dotfiles/zsh/zprofile index a880898..c6d742a 100644 --- a/dotfiles/zsh/zprofile +++ b/dotfiles/zsh/zprofile @@ -3,6 +3,17 @@ [[ -x /usr/bin/vim ]] && export EDITOR="/usr/bin/vim" +# Colored less output +export LESS=-R +export LESS_TERMCAP_mb="$(printf '%b' '')" +export LESS_TERMCAP_md="$(printf '%b' '')" +export LESS_TERMCAP_me="$(printf '%b' '')" +export LESS_TERMCAP_so="$(printf '%b' '')" +export LESS_TERMCAP_se="$(printf '%b' '')" +export LESS_TERMCAP_us="$(printf '%b' '')" +export LESS_TERMCAP_ue="$(printf '%b' '')" +export LESSOPEN="| /usr/bin/highlight -O ansi %s 2>/dev/null" + if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then exec startx fi