Advertisement
SilenceAndI

~/.zshrc

Apr 15th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.75 KB | None | 0 0
  1. # Lines configured by zsh-newuser-install
  2. HISTFILE=~/.histfile
  3. HISTSIZE=1000
  4. SAVEHIST=1000
  5.  
  6. setopt autocd extendedglob
  7. # End of lines configured by zsh-newuser-install
  8. # The following lines were added by compinstall
  9. zstyle :compinstall filename '/home/name123/.zshrc'
  10.  
  11. alias mpicc=/local/name123/Applications/bin/mpiCC
  12. # alias ..="cd .."
  13.  
  14. export TCL_LIB_SPEC="i-L/local/name123/Applications/lib -ltcl8.5"
  15.  
  16. export TCL_INCLUDE_SPEC='-I/local/name123/Applications/include'
  17.  
  18. _zsh_cli_fg() { fg; }
  19. zle -N _zsh_cli_fg
  20. bindkey '^Z' _zsh_cli_fg
  21. bindkey '^ ' autosuggest-accept
  22.  
  23. autoload -Uz compinit
  24. compinit
  25. # End of lines added by compinstall
  26.  
  27. unset PROMPT
  28. unset RPROMPT
  29. autoload -Uz promptinit
  30. promptinit
  31. PROMPT='>'
  32. RPROMPT='[%F{green}%(5~|%-1~/.../%3~|%4~)%f]'
  33. autoload -U colors
  34. colors
  35.  
  36. alias of41='module load mpi/openmpi-x86_64; source \/local/name123/OpenFOAM/OpenFOAM-4.1/etc/bashrc WM_LABEL_SIZE=64'
  37.  
  38. export WM_PROJECT_VERSION='4.1'
  39.  
  40. export WM_PROJECT_DIR='/local/name123/OpenFOAM/OpenFOAM-4.1'
  41.  
  42. export WM_THIRD_PARTY_DIR='/local/name123/OpenFOAM/ThirdParty-4.1'
  43.  
  44. export WM_NCOMPPROCS=16
  45. source $WM_PROJECT_DIR/etc/bashrc
  46.  
  47. #================================================#
  48. #- source cfdem env vars
  49. export CFDEM_VERSION=PUBLIC
  50. export CFDEM_PROJECT_DIR=/local/name123/CFDEM/CFDEMcoupling-$CFDEM_VERSION-$WM_PROJECT_VERSION
  51. export CFDEM_PROJECT_USER_DIR=/local/name123/CFDEM/$LOGNAME-$CFDEM_VERSION-$WM_PROJECT_VERSION
  52. export CFDEM_bashrc=$CFDEM_PROJECT_DIR/src/lagrangian/cfdemParticle/etc/bashrc
  53. export CFDEM_LIGGGHTS_SRC_DIR=/local/name123/LIGGGHTS/LIGGGHTS-PUBLIC/src
  54. export CFDEM_LIGGGHTS_MAKEFILE_NAME=auto
  55. export CFDEM_LPP_DIR=/local/name123/LIGGGHTS/lpp/src
  56. . $CFDEM_bashrc
  57. #================================================#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement