summaryrefslogtreecommitdiff
path: root/.zshenv
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2022-03-04 02:18:51 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2022-03-04 02:18:51 +0530
commitfdadbc2b15401cc077daadcd1239e81074ddb30c (patch)
tree810be3a917eea4b9f1e80f15df560ee4914d0cf4 /.zshenv
parent91b27a650cb4e075e87b7dec5870f7e709568a60 (diff)
spring cleaning 0.2
Diffstat (limited to '.zshenv')
-rw-r--r--.zshenv21
1 files changed, 21 insertions, 0 deletions
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)