aboutsummaryrefslogtreecommitdiff
path: root/shell/colors
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2021-09-05 00:23:41 -0400
committerMitchell Riedstra <mitch@riedstra.dev>2021-09-05 00:23:41 -0400
commit27ac56f3af62474cb4e69728541e551c0c5dd4a4 (patch)
tree4fece6e169320bdfa8b2fc90fc629285520fcb0f /shell/colors
parent319ac2aec7787ae500eb3ff84020b7ca3e149298 (diff)
downloaddotfiles-27ac56f3af62474cb4e69728541e551c0c5dd4a4.tar.gz
dotfiles-27ac56f3af62474cb4e69728541e551c0c5dd4a4.tar.xz
Major updates to my shell configuration
Diffstat (limited to 'shell/colors')
-rw-r--r--shell/colors38
1 files changed, 0 insertions, 38 deletions
diff --git a/shell/colors b/shell/colors
deleted file mode 100644
index 489179f..0000000
--- a/shell/colors
+++ /dev/null
@@ -1,38 +0,0 @@
-
-setcolorterminal() {
- case $TERM in
- xterm-kitty)
- # Prevent xterm-kitty from being turned into xterm-256color
- return;
- ;;
- xterm*)
- export TERM=xterm-256color
- # printf $'\033]0;'"$(hostname)"$'\007';
- ;;
- screen*)
- export TERM=screen-256color
- # printf $'\033k'"$(whoami)"$'\033\\';
- ;;
- esac
-}
-
-setlscolors() {
- if [ "$(uname)" = "Linux" ] ; then
- export LS_COLORS='di=36;40:ln=1;31;40:so=32;40:pi=33;40:ex=1;32;40:bd=34;46:cd=34;43:su=0;41:sg=0;46:tw=0;42:ow=0;43:'
- elif [ "$(uname)" = "FreeBSD" ] ; then
- export LSCOLORS='gxBxcxdxCxegedabagacad'
- fi
-}
-
-colormanpages() {
- export LESS_TERMCAP_mb=""
- export LESS_TERMCAP_md=""
- export LESS_TERMCAP_me=""
- export LESS_TERMCAP_se=""
- export LESS_TERMCAP_so=""
- export LESS_TERMCAP_ue=""
- export LESS_TERMCAP_us=""
-
- ## Gentoo is nuts
- export GROFF_NO_SGR=1
-}