Advertisement
fikriomar16

.zshrc

Aug 19th, 2017
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 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.  
  7. export LANG=en_GB.UTF-8
  8. export TERM="xterm-256color"
  9.  
  10. if [[ $TILIX_ID ]]; then
  11. source /etc/profile.d/vte.sh
  12. fi
  13.  
  14. # Set name of the theme to load. Optionally, if you set this to "random"
  15. # it'll load a random theme each time that oh-my-zsh is loaded.
  16. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  17. ZSH_THEME="powerlevel9k/powerlevel9k"
  18.  
  19. local medsos="   @fikriomar16 "
  20. local user_symbol="  omar "
  21.  
  22. POWERLEVEL9K_MODE='nerdfont-complete'
  23. POWERLEVEL9K_PROMPT_ON_NEWLINE=true
  24. POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=""
  25. POWERLEVEL9K_MULTILINE_SECOND_PROMPT_PREFIX="%{%F{black}%K{red}%} $user_symbol%{%b%f%K{cyan}%F{red}%}%{%F{black}%K{cyan}%} $medsos%{%b%f%k%F{cyan}%} %{%f%} "
  26. POWERLEVEL9K_TIME_FORMAT="%D{\uf017 %H:%M \uf073 %d.%m.%y}"
  27. POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon root_indicator dir rbenv vcs)
  28. POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status background_jobs time)
  29.  
  30. # Uncomment the following line to use case-sensitive completion.
  31. # CASE_SENSITIVE="true"
  32.  
  33. # Uncomment the following line to use hyphen-insensitive completion. Case
  34. # sensitive completion must be off. _ and - will be interchangeable.
  35. # HYPHEN_INSENSITIVE="true"
  36.  
  37. # Uncomment the following line to disable bi-weekly auto-update checks.
  38. # DISABLE_AUTO_UPDATE="true"
  39.  
  40. # Uncomment the following line to change how often to auto-update (in days).
  41. # export UPDATE_ZSH_DAYS=13
  42.  
  43. # Uncomment the following line to disable colors in ls.
  44. # DISABLE_LS_COLORS="true"
  45.  
  46. # Uncomment the following line to disable auto-setting terminal title.
  47. # DISABLE_AUTO_TITLE="true"
  48.  
  49. # Uncomment the following line to enable command auto-correction.
  50. # ENABLE_CORRECTION="true"
  51.  
  52. # Uncomment the following line to display red dots whilst waiting for completion.
  53. # COMPLETION_WAITING_DOTS="true"
  54.  
  55. # Uncomment the following line if you want to disable marking untracked files
  56. # under VCS as dirty. This makes repository status check for large repositories
  57. # much, much faster.
  58. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  59.  
  60. # Uncomment the following line if you want to change the command execution time
  61. # stamp shown in the history command output.
  62. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  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? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  69. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  70. # Example format: plugins=(rails git textmate ruby lighthouse)
  71. # Add wisely, as too many plugins slow down shell startup.
  72. plugins=(git)
  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"
  104. alias ls='els'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement