Advertisement
Lothering1

ZSH config

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