settings 865 B

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