From 3ac8e0f994839f3c972033bcb12421081ebeb683 Mon Sep 17 00:00:00 2001 From: David Runge Date: Tue, 28 Sep 2021 22:50:56 +0200 Subject: zsh: move includes to XDG compliant locations .config/zsh/{functions,includes}/*: Move functions and includes to XDG compliant locations. .zshrc: Include functions and other includes from XDG compliant locations. Remove use of prepend-sudo function. --- .config/zsh/functions/overrides.zsh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .config/zsh/functions/overrides.zsh (limited to '.config/zsh/functions/overrides.zsh') diff --git a/.config/zsh/functions/overrides.zsh b/.config/zsh/functions/overrides.zsh new file mode 100644 index 0000000..b320671 --- /dev/null +++ b/.config/zsh/functions/overrides.zsh @@ -0,0 +1,4 @@ +# make git auto completion faster by favoring local files +__git_files () { + _wanted files expl 'local files' _files +} -- cgit v1.2.3-54-g00ecf