Another copy of my dotfiles. Because I don't completely trust GitHub.
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.

46 lines
1.1 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. eval "$(direnv hook zsh)" >> /tmp/direnv
  2. neofetch --ascii ~/.config/neofetch/ascii.txt
  3. if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
  4. source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
  5. fi
  6. source ~/.profile
  7. # Created by kuro for 5.8
  8. source <(antibody init)
  9. HISTFILE=~/.zsh_history
  10. HISTSIZE=10000
  11. SAVEHIST=10000
  12. setopt appendhistory
  13. #Autocompletion
  14. autoload -Uz compinit
  15. compinit
  16. antibody bundle < ~/.config/antibody/zsh_plugins.txt
  17. [[ ! -f ~/.config/antibody/p10k.zsh ]] || source ~/.config/antibody/p10k.zsh
  18. bindkey "^[[H" beginning-of-line
  19. bindkey "^[[F" end-of-line
  20. bindkey "^[[3~" delete-char
  21. bindkey "^[[1;5C" forward-word
  22. bindkey "^[[1;5D" backward-word
  23. fpath=(~/.completions $fpath)
  24. autoload -Uz compinit && compinit
  25. source ~/.aliases
  26. if [ -f ~/.zsh_secret ]; then
  27. source ~/.zsh_secret
  28. fi
  29. source ~/.cmds
  30. [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
  31. export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=241'
  32. export KEYTIMEOUT=5
  33. # added by travis gem
  34. [ ! -s /home/yigit/.travis/travis.sh ] || source /home/yigit/.travis/travis.sh