summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDaniel V <lord_fright@yahoo.com>2020-05-09 15:39:25 -0400
committerDaniel V <lord_fright@yahoo.com>2020-05-09 15:39:25 -0400
commitd3dff8cefb4fac62fc350c8946bc0132eb6d1153 (patch)
treedb189e87f8c36bd0bfcf59d734fe34e863c42dea /modules
parentf885aff4c9efca0dcb553fec9a5029f4995adb30 (diff)
This fixes bash completion for me, though it may not be the best way.
Hopefully the pull request will go through or tell me how to do it better
Diffstat (limited to 'modules')
-rw-r--r--modules/programs/bash/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/programs/bash/default.nix b/modules/programs/bash/default.nix
index 7d13c69..1e60d84 100644
--- a/modules/programs/bash/default.nix
+++ b/modules/programs/bash/default.nix
@@ -86,6 +86,9 @@ in
for m in "$p/etc/bash_completion.d/"*; do
source $m
done
+ for m in "$p/share/bash-completion/completions/"*; do
+ source $m
+ done
done
eval "$nullglobStatus"
unset nullglobStatus p m