aboutsummaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-09-10 00:35:02 +0300
committereug-vs <eug-vs@keemail.me>2021-09-10 00:35:02 +0300
commit535778b3645f41c1a1358402e396f120ebf91c18 (patch)
tree22b2b49e9818a351ce4d4e7d8c737f276fd11eec /zsh
parent928097912990c92dc7cd69c692374b1a5b4636e8 (diff)
downloaddotfiles-535778b3645f41c1a1358402e396f120ebf91c18.tar.gz
fix(zsh): suppress errors when sourcing
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zshrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 76ed964..0f1f804 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -31,8 +31,8 @@ alias tw=timew
alias s="sudo systemctl"
# FZF
-source /usr/share/fzf/key-bindings.zsh
-source /usr/share/fzf/completion.zsh
+source /usr/share/fzf/key-bindings.zsh 2> /dev/null
+source /usr/share/fzf/completion.zsh 2> /dev/null
# Node version manager
export NVM_DIR="$HOME/.nvm"
@@ -40,4 +40,4 @@ export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# Syntax highlighting, must be last
-source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
+source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2> /dev/null