aboutsummaryrefslogtreecommitdiffstats
path: root/_zsh/90-exports.zsh
diff options
context:
space:
mode:
Diffstat (limited to '_zsh/90-exports.zsh')
-rw-r--r--_zsh/90-exports.zsh23
1 files changed, 0 insertions, 23 deletions
diff --git a/_zsh/90-exports.zsh b/_zsh/90-exports.zsh
deleted file mode 100644
index f368161..0000000
--- a/_zsh/90-exports.zsh
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# zsh/exports.zsh
-#
-
-# NOTE:
-# Generic environment variables and those needing been set only once
-# should go to `~/.profile'.
-
-# colors for BSD ls
-if [[ -n "${IS_BSD}" ]]; then
- export CLICOLOR=1
- export LSCOLORS=exfxcxdxbxegedabagacad
-fi
-
-# Color setup for `ls': `LS_COLORS'
-# NOTE: For unknown reason, the `LS_COLORS' variable get overridden when
-# it is set in `~/.profile'.
-if exists dircolors; then
- eval $(dircolors -b)
-fi
-
-
-# vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=zsh: #