From fdadbc2b15401cc077daadcd1239e81074ddb30c Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Fri, 4 Mar 2022 02:18:51 +0530 Subject: spring cleaning 0.2 --- .zshenv | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .zshenv (limited to '.zshenv') diff --git a/.zshenv b/.zshenv new file mode 100644 index 0000000..133c4d1 --- /dev/null +++ b/.zshenv @@ -0,0 +1,21 @@ +#!/bin/zsh +# Default Applications +export EDITOR="vim" +export READER="zathura" +export TERMINAL="st" +export BROWSER="brave" + +# Start blinking +export LESS_TERMCAP_mb=$(tput bold; tput setaf 2) # green +# Start bold +export LESS_TERMCAP_md=$(tput bold; tput setaf 2) # green +# Start stand out +export LESS_TERMCAP_so=$(tput bold; tput setaf 3) # yellow +# End standout +export LESS_TERMCAP_se=$(tput rmso; tput sgr0) +# Start underline +export LESS_TERMCAP_us=$(tput smul; tput bold; tput setaf 1) # red +# End Underline +export LESS_TERMCAP_ue=$(tput sgr0) +# End bold, blinking, standout, underline +export LESS_TERMCAP_me=$(tput sgr0) -- cgit v1.2.3