frenky666

zshrc

Sep 17th, 2021 (edited)
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.42 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/franjozilic/.oh-my-zsh
  6.  
  7. # Set name of the theme to load. Optionally, if you set this to "random"
  8. # it'll load a random theme each time that oh-my-zsh is loaded.
  9. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  10. ZSH_THEME="minimal-frenky"
  11.  
  12. # Set list of themes to load
  13. # Setting this variable when ZSH_THEME=random
  14. # cause zsh load theme from this variable instead of
  15. # looking in ~/.oh-my-zsh/themes/
  16. # An empty array have no effect
  17. # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
  18.  
  19. # Uncomment the following line to use case-sensitive completion.
  20. # CASE_SENSITIVE="true"
  21.  
  22. # Uncomment the following line to use hyphen-insensitive completion. Case
  23. # sensitive completion must be off. _ and - will be interchangeable.
  24. # HYPHEN_INSENSITIVE="true"
  25.  
  26. # Uncomment the following line to disable bi-weekly auto-update checks.
  27. # DISABLE_AUTO_UPDATE="true"
  28.  
  29. # Uncomment the following line to change how often to auto-update (in days).
  30. # export UPDATE_ZSH_DAYS=13
  31.  
  32. # Uncomment the following line to disable colors in ls.
  33. # DISABLE_LS_COLORS="true"
  34.  
  35. # Uncomment the following line to disable auto-setting terminal title.
  36. # DISABLE_AUTO_TITLE="true"
  37.  
  38. # Uncomment the following line to enable command auto-correction.
  39. ENABLE_CORRECTION="true"
  40.  
  41. # Uncomment the following line to display red dots whilst waiting for completion.
  42. # COMPLETION_WAITING_DOTS="true"
  43.  
  44. # Uncomment the following line if you want to disable marking untracked files
  45. # under VCS as dirty. This makes repository status check for large repositories
  46. # much, much faster.
  47. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  48.  
  49. # Uncomment the following line if you want to change the command execution time
  50. # stamp shown in the history command output.
  51. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  52. # HIST_STAMPS="mm/dd/yyyy"
  53.  
  54. # Would you like to use another custom folder than $ZSH/custom?
  55. # ZSH_CUSTOM=/path/to/new-custom-folder
  56.  
  57. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  58. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  59. # Example format: plugins=(rails git textmate ruby lighthouse)
  60. # Add wisely, as too many plugins slow down shell startup.
  61. plugins=(
  62.   ssh-agent
  63.   kubectl
  64.   git
  65.   ansible
  66.   command-not-found
  67.   debian
  68.   docker
  69.   helm
  70. )
  71.  
  72. source $ZSH/oh-my-zsh.sh
  73.  
  74. # User configuration
  75.  
  76. # export MANPATH="/usr/local/man:$MANPATH"
  77.  
  78. # You may need to manually set your language environment
  79. # export LANG=en_US.UTF-8
  80.  
  81. # Preferred editor for local and remote sessions
  82. # if [[ -n $SSH_CONNECTION ]]; then
  83. #   export EDITOR='vim'
  84. # else
  85. #   export EDITOR='mvim'
  86. # fi
  87.  
  88. # Compilation flags
  89. # export ARCHFLAGS="-arch x86_64"
  90.  
  91. # ssh
  92. # export SSH_KEY_PATH="~/.ssh/rsa_id"
  93.  
  94. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  95. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  96. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  97. # For a full list of active aliases, run `alias`.
  98. #
  99. # Example aliases
  100. # alias zshconfig="mate ~/.zshrc"
  101. # alias ohmyzsh="mate ~/.oh-my-zsh"
  102.  
  103. alias ll="ls -la"
  104.  
  105. set -o vi
  106. bindkey "^R" history-incremental-search-backward
  107.  
  108. ssh-add -l > /dev/null || ssh-add
  109.  
  110. export EDITOR=/usr/bin/vim
  111.  
  112. autoload -U compinit && compinit
  113.  
Add Comment
Please, Sign In to add comment