From 873107b1f2ee626260e0e7c971ce03f269ad784b Mon Sep 17 00:00:00 2001 From: Fabian Ising Date: Fri, 14 Apr 2023 09:21:55 +0200 Subject: [PATCH] [zsh] Add os specific config file --- zsh/.os_config.zsh.debian.example | 1 + zsh/.zshrc | 1 + 2 files changed, 2 insertions(+) create mode 100644 zsh/.os_config.zsh.debian.example diff --git a/zsh/.os_config.zsh.debian.example b/zsh/.os_config.zsh.debian.example new file mode 100644 index 0000000..cc02349 --- /dev/null +++ b/zsh/.os_config.zsh.debian.example @@ -0,0 +1 @@ +[[ -f /etc/zsh_command_not_found ]] && source /etc/zsh_command_not_found diff --git a/zsh/.zshrc b/zsh/.zshrc index 3d0e86d..41d7113 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -11,6 +11,7 @@ export PATH="$HOME/.local/bin:$PATH" [[ -f ~/.zsh/.virtual_env_config.zsh ]] && source ~/.zsh/.virtual_env_config.zsh [[ -f /usr/share/doc/find-the-command/ftc.zsh ]] && source /usr/share/doc/find-the-command/ftc.zsh [[ -f ~/.zsh/.local_config ]] && source ~/.zsh/.local_config +[[ -f ~/.zsh/.os_config.zsh ]] && source ~/.zsh/.os_config.zsh # Load Antidote mkdir -p ${ZDOTDIR:-~}/.cache/zsh