added command not found & fzf default stuff

This commit is contained in:
Niklas 2020-06-24 12:08:39 +02:00
parent 7eb282e1e9
commit ee7042902f

11
.zshrc
View File

@ -17,6 +17,8 @@
# - zsh-autosuggestions # - zsh-autosuggestions
# - nerd-font-hack # - nerd-font-hack
# - lsd # - lsd
# - fzf
# - pkgfile
export PATH=/$HOME/.local/bin:$PATH export PATH=/$HOME/.local/bin:$PATH
@ -72,6 +74,15 @@ source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zs
# autosugestion # autosugestion
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
# command not found
source /usr/share/doc/pkgfile/command-not-found.zsh
# Variables
# FZF
export FZF_DEFAULT_COMMAND="fd --type file --color=always"
export FZF_DEFAULT_OPTS="--ansi"
# Aliases # Aliases
alias vim="nvim" alias vim="nvim"
alias sudo='sudo ' alias sudo='sudo '