Last active
October 12, 2016 11:20
-
-
Save kohnakagawa/32347573089945360fdc64b1f05f7bc6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # We do not use emacs frames. | |
| set -x TERM xterm-256color | |
| alias emacs 'emacs -nw' | |
| set -x EDITOR emacs | |
| alias rm 'rm -i' | |
| # settings for gromacs | |
| set -x GMX_MAXBACKUP '-1' # We do not need backup files. | |
| set -x GMXBIN /usr/local/gromacs/bin | |
| set -x GMXLDLIB /usr/local/gromacs/lib | |
| set -x GMXMAN /usr/local/gromacs/share/man | |
| set -x GMXDATA /usr/local/gromacs/share/gromacs | |
| set -x GMXPKGCONFIG $GMXLDLIB/pkgconfig | |
| set -x PKG_CONFIG_PATH $GMXPKGCONFIG | |
| set -x fish_user_paths $PATH $GMXBIN | |
| set -x LD_LIBRARY_PATH $GMXLDLIB $LD_LIBRARY_PATH | |
| set -x MANPATH $GMXMAN $MANPATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment