All of my important config files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
499 B

  1. ZSH_THEME="agnoster"
  2. HIST_STAMPS="dd.mm.yyyy"
  3. COMPLETION_WAITING_DOTS="true"
  4. export EDITOR="vim"
  5. export goschneider="$HOME/go/src/git.webschneider.org"
  6. source $HOME/.dotfiles/zsh/aliases.zsh
  7. # Shell completion for gulp
  8. if hash gulp 2&> /dev/null; then
  9. eval "$(gulp --completion=zsh)"
  10. fi
  11. # fzf settings
  12. if hash ag 2&> /dev/null; then
  13. # Use ag instead of find and exclude .gitignored files
  14. export FZF_DEFAULT_COMMAND='ag -g ""'
  15. export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
  16. fi