Add this to a file in /etc/profile.d/ ```bash _lisp_complete() { local cur="${COMP_WORDS[COMP_CWORD]}" COMPREPLY=( $(compgen -f -X '!*.lsp' -- "$cur") ) } ```