settings 820 B

12345678910111213141516171819202122
  1. ##### My (demuredemeanor) bashrc sub source machine settings script
  2. # Uses tabstop=4; shiftwidth=4 tabs; foldmarker={{{,}}};
  3. # https://notabug.org/demure/dotfiles/
  4. # legacy repo http://github.com/demure/dotfiles
  5. # vim:set syntax=sh:
  6. ### For SDF Main Cluster ### {{{
  7. ## Since there are a bunch of hosts, there would be too many host conf files
  8. if [[ "${OSTYPE}" == "netbsd" ]]; then
  9. #LSCOLORS='exfxcxdxbxegedabagacad'
  10. export TZ=EST5EDT
  11. export PATH=/usr/pkg/bin:/usr/local/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/sbin:${HOME}/projects/personal/scripts:${HOME}/bin:${HOME}/.local/bin:/usr/local/games:/usr/games
  12. ## Interactive Test
  13. if [[ $- == *i* ]]; then
  14. alias help='/usr/local/bin/help'
  15. unalias svi
  16. #alias ls='colorls -G'
  17. fi
  18. fi
  19. ### End For SDF Main Cluster ### }}}