.zshrc 943 B

1234567891011121314151617181920212223242526272829303132333435
  1. ### O H - M Y - Z S H C O N F I G ###
  2. ## Path to your oh-my-zsh installation.
  3. export ZSH=~/.oh-my-zsh
  4. export ZSH_CUSTOM=~/.zsh_custom
  5. # Set name of the theme to load.
  6. # Look in ~/.oh-my-zsh/themes/
  7. # Optionally, if you set this to "random", it'll load a random theme each
  8. # time that oh-my-zsh is loaded.
  9. ZSH_THEME="bixel"
  10. # Device-specifig setup (ignored by git)
  11. # source local config first to overwrite default theme if wanted
  12. source .zsh_local
  13. plugins=(git pass brew)
  14. source $ZSH/oh-my-zsh.sh
  15. ### U S E R C O N F I G ###
  16. ### ALIASES ###
  17. # list directory in human readable (-h), listed (-l) way. Show all files (-a).
  18. # -F: display an indicator for special list entries (folder, links, etc...)
  19. alias ll='ls -Fhla | less -R'
  20. alias l='ls -lhatr'
  21. # vi-mode ❤️ :O
  22. # not so useful in daily life...
  23. # bindkey -v
  24. # bindkey '^?' backward-delete-char
  25. # bindkey '^w' backward-kill-word
  26. # bindkey '^r' history-incremental-search-backward