Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.79 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/$USER/.oh-my-zsh"
  6.  
  7. # Set name of the theme to load --- if set to "random", it will
  8. # load a random theme each time oh-my-zsh is loaded, in which case,
  9. # to know which specific one was loaded, run: echo $RANDOM_THEME
  10. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  11. #ZSH_THEME="powerlevel9k/powerlevel9k"
  12. #POWERLEVEL9K_MODE="nerdfont-complete"
  13. ZSH_THEME="michelebologna"
  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 ~/.oh-my-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 the following line to disable bi-weekly auto-update checks.
  29. # DISABLE_AUTO_UPDATE="true"
  30.  
  31. # Uncomment the following line to automatically update without prompting.
  32. # DISABLE_UPDATE_PROMPT="true"
  33.  
  34. # Uncomment the following line to change how often to auto-update (in days).
  35. # export UPDATE_ZSH_DAYS=13
  36.  
  37. # Uncomment the following line if pasting URLs and other text is messed up.
  38. # DISABLE_MAGIC_FUNCTIONS=true
  39.  
  40. # Uncomment the following line to disable colors in ls.
  41. # DISABLE_LS_COLORS="true"
  42.  
  43. # Uncomment the following line to disable auto-setting terminal title.
  44. # DISABLE_AUTO_TITLE="true"
  45.  
  46. # Uncomment the following line to enable command auto-correction.
  47. # ENABLE_CORRECTION="true"
  48.  
  49. # Uncomment the following line to display red dots whilst waiting for completion.
  50. # COMPLETION_WAITING_DOTS="true"
  51.  
  52. # Uncomment the following line if you want to disable marking untracked files
  53. # under VCS as dirty. This makes repository status check for large repositories
  54. # much, much faster.
  55. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  56.  
  57. # Uncomment the following line if you want to change the command execution time
  58. # stamp shown in the history command output.
  59. # You can set one of the optional three formats:
  60. # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  61. # or set a custom format using the strftime function format specifications,
  62. # see 'man strftime' for details.
  63. # HIST_STAMPS="mm/dd/yyyy"
  64.  
  65. # Would you like to use another custom folder than $ZSH/custom?
  66. # ZSH_CUSTOM=/path/to/new-custom-folder
  67.  
  68. # Which plugins would you like to load?
  69. # Standard plugins can be found in ~/.oh-my-zsh/plugins/*
  70. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  71. # Example format: plugins=(rails git textmate ruby lighthouse)
  72. # Add wisely, as too many plugins slow down shell startup.
  73. plugins=(
  74. git
  75. zsh-syntax-highlighting
  76. zsh-autosuggestions
  77. )
  78.  
  79. source $ZSH/oh-my-zsh.sh
  80.  
  81. # User configuration
  82.  
  83. # export MANPATH="/usr/local/man:$MANPATH"
  84.  
  85. # You may need to manually set your language environment
  86. # export LANG=en_US.UTF-8
  87.  
  88. # Preferred editor for local and remote sessions
  89. # if [[ -n $SSH_CONNECTION ]]; then
  90. # export EDITOR='vim'
  91. # else
  92. # export EDITOR='mvim'
  93. # fi
  94.  
  95. # Compilation flags
  96. # export ARCHFLAGS="-arch x86_64"
  97.  
  98. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  99. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  100. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  101. # For a full list of active aliases, run `alias`.
  102. #
  103. # Example aliases
  104. # alias zshconfig="mate ~/.zshrc"
  105. # alias ohmyzsh="mate ~/.oh-my-zsh"
  106.  
  107. [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
  108. bindkey '^P' fzf-file-widget
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement