Advertisement
apl-mhd

zshrc

Jan 17th, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.50 KB | None | 0 0
  1. alias c='clear'
  2.  
  3. # If you come from bash you might have to change your $PATH.
  4. export PATH=$HOME/bin:/usr/local/bin:~/.composer/vendor/bin:$PATH
  5.  
  6. # Path to your oh-my-zsh installation.
  7. export ZSH="/Users/apelmahmud/.oh-my-zsh"
  8.  
  9. export PS1="\W \$"
  10.  
  11. # Set name of the theme to load --- if set to "random", it will
  12. # load a random theme each time oh-my-zsh is loaded, in which case,
  13. # to know which specific one was loaded, run: echo $RANDOM_THEME
  14. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  15. ZSH_THEME="agnoster"
  16.  
  17. # Set list of themes to pick from when loading at random
  18. # Setting this variable when ZSH_THEME=random will cause zsh to load
  19. # a theme from this variable instead of looking in ~/.oh-my-zsh/themes/
  20. # If set to an empty array, this variable will have no effect.
  21. # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
  22.  
  23. # Uncomment the following line to use case-sensitive completion.
  24. # CASE_SENSITIVE="true"
  25.  
  26. # Uncomment the following line to use hyphen-insensitive completion.
  27. # Case-sensitive completion must be off. _ and - will be interchangeable.
  28. # HYPHEN_INSENSITIVE="true"
  29.  
  30. # Uncomment the following line to disable bi-weekly auto-update checks.
  31. # DISABLE_AUTO_UPDATE="true"
  32.  
  33. # Uncomment the following line to change how often to auto-update (in days).
  34. # export UPDATE_ZSH_DAYS=13
  35.  
  36. # Uncomment the following line to disable colors in ls.
  37. # DISABLE_LS_COLORS="true"
  38.  
  39. # Uncomment the following line to disable auto-setting terminal title.
  40. # DISABLE_AUTO_TITLE="true"
  41.  
  42. # Uncomment the following line to enable command auto-correction.
  43. # ENABLE_CORRECTION="true"
  44.  
  45. # Uncomment the following line to display red dots whilst waiting for completion.
  46. # COMPLETION_WAITING_DOTS="true"
  47.  
  48. # Uncomment the following line if you want to disable marking untracked files
  49. # under VCS as dirty. This makes repository status check for large repositories
  50. # much, much faster.
  51. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  52.  
  53. # Uncomment the following line if you want to change the command execution time
  54. # stamp shown in the history command output.
  55. # You can set one of the optional three formats:
  56. # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  57. # or set a custom format using the strftime function format specifications,
  58. # see 'man strftime' for details.
  59. # HIST_STAMPS="mm/dd/yyyy"
  60.  
  61. # Would you like to use another custom folder than $ZSH/custom?
  62. # ZSH_CUSTOM=/path/to/new-custom-folder
  63.  
  64. # Which plugins would you like to load?
  65. # Standard plugins can be found in ~/.oh-my-zsh/plugins/*
  66. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  67. # Example format: plugins=(rails git textmate ruby lighthouse)
  68. # Add wisely, as too many plugins slow down shell startup.
  69. plugins=(
  70.   git
  71.   zsh-autosuggestions
  72. )
  73.  
  74. source $ZSH/oh-my-zsh.sh
  75.  
  76. # User configuration
  77.  
  78. # export MANPATH="/usr/local/man:$MANPATH"
  79.  
  80. # You may need to manually set your language environment
  81. # export LANG=en_US.UTF-8
  82.  
  83. # Preferred editor for local and remote sessions
  84. # if [[ -n $SSH_CONNECTION ]]; then
  85. #   export EDITOR='vim'
  86. # else
  87. #   export EDITOR='mvim'
  88. # fi
  89.  
  90. # Compilation flags
  91. # export ARCHFLAGS="-arch x86_64"
  92.  
  93. # ssh
  94. # export SSH_KEY_PATH="~/.ssh/rsa_id"
  95.  
  96. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  97. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  98. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  99. # For a full list of active aliases, run `alias`.
  100. #
  101. # Example aliases
  102. # alias zshconfig="mate ~/.zshrc"
  103. # alias ohmyzsh="mate ~/.oh-my-zsh"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement