Created
May 30, 2018 22:41
-
-
Save loliGothicK/0f4783c6cf97a96b5ec9f3a96333d4df 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
| export TERM="xterm-256color" | |
| source ~/.zplug/init.zsh | |
| zplug "zsh-users/zsh-syntax-highlighting", defer:2 | |
| # Load theme file | |
| zplug bhilburn/powerlevel9k, use:powerlevel9k.zsh-theme | |
| # Install plugins if there are plugins that have not been installed | |
| if ! zplug check --verbose; then | |
| printf "Install? [y/N]: " | |
| if read -q; then | |
| echo; zplug install | |
| fi | |
| fi | |
| # Then, source plugins and add commands to $PATH | |
| zplug load --verbose | |
| alias clang++='clang++-6.0' | |
| export PATH=$PATH:~/.cargo/bin:/usr/local/go/bin | |
| export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib:/usr/include/x86_64-linux-gnu:/usr/lib64 | |
| export LD_RUN_PATH=$LD_RUN_PATH:/usr/local/lib:/usr/include/x86_64-linux-gnu:/usr/lib64 | |
| export CC="clang-6.0" | |
| export CXX="clang++-6.0" | |
| export CMAKE_MODULE_PATH='/usr/lib/cmake/' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment