From 23d2785f2d6d769fd1415b1ca2e3a41a097c386a Mon Sep 17 00:00:00 2001 From: xerus <27jf@pm.me> Date: Wed, 1 Apr 2020 21:36:48 +0200 Subject: [PATCH] Add cmake-build-debug to global gitignore & fix editshell completion --- .config/git/ignore | 3 ++- .config/shell/git | 1 - .config/zsh/zsh_completion/_editshell | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/git/ignore b/.config/git/ignore index ce03106..46e5f0e 100755 --- a/.config/git/ignore +++ b/.config/git/ignore @@ -32,4 +32,5 @@ **/.gradle/ build/ out/ -.kotlintest +.kotlintest/ +cmake-build-debug/ diff --git a/.config/shell/git b/.config/shell/git index 5cbe1f4..3f7a1d2 100644 --- a/.config/shell/git +++ b/.config/shell/git @@ -1,4 +1,3 @@ - alias bfg='java -jar ~/daten/dropbox/tools/bfg-1.13.0.jar' alias gti=git diff --git a/.config/zsh/zsh_completion/_editshell b/.config/zsh/zsh_completion/_editshell index 42ee1ff..c122b54 100644 --- a/.config/zsh/zsh_completion/_editshell +++ b/.config/zsh/zsh_completion/_editshell @@ -1,2 +1,2 @@ #compdef editshell -compadd $(ls -pA ~/shells | grep -v / ) +compadd $(ls -pA $SHELL_CONFIG | grep -v / )