diff --git a/shell/completion.bash b/shell/completion.bash
index 1e03b07347c561686c40487caa30d9ad6a16c8c3..abe3363cd7d547ff6140214801595db0426b75dd 100644
--- a/shell/completion.bash
+++ b/shell/completion.bash
@@ -48,7 +48,9 @@ _fzf_opts_completion() {
     --sync
     --cycle
     --history
-    --history-size"
+    --history-size
+    --header-file
+    --header-lines"
 
   case "${prev}" in
   --tiebreak)
@@ -59,7 +61,7 @@ _fzf_opts_completion() {
     COMPREPLY=( $(compgen -W "dark light 16 bw" -- ${cur}) )
     return 0
     ;;
-  --history)
+  --history|--header-file)
     COMPREPLY=()
     return 0
     ;;