From c1c4b83e62572bf15fbdc5edb7bb2f8cd6a31123 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Sat, 11 Jan 2025 21:36:52 +0100 Subject: [PATCH] ZSH Config: set themeing --- Configs/ZSHShell/.zshrc | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Configs/ZSHShell/.zshrc b/Configs/ZSHShell/.zshrc index 2694a56..4068751 100644 --- a/Configs/ZSHShell/.zshrc +++ b/Configs/ZSHShell/.zshrc @@ -23,6 +23,25 @@ zstyle ':completion:*' cache-path ~/.zsh/cache #################################################################################################################################################### +#################################################################################################################################################### +# Theming section +#################################################################################################################################################### +autoload -U compinit colors zcalc +compinit -d +colors + +# Color man pages +export LESS_TERMCAP_mb=$'\E[01;32m' +export LESS_TERMCAP_md=$'\E[01;32m' +export LESS_TERMCAP_me=$'\E[0m' +export LESS_TERMCAP_se=$'\E[0m' +export LESS_TERMCAP_so=$'\E[01;47;34m' +export LESS_TERMCAP_ue=$'\E[0m' +export LESS_TERMCAP_us=$'\E[01;36m' +export LESS=-R +#################################################################################################################################################### + + #################################################################################################################################################### # Startup print section ####################################################################################################################################################