6 lines
226 B
Bash
6 lines
226 B
Bash
# Ignore these file extensions in tab completions
|
|
fignore=(.class)
|
|
|
|
# Set env vars according to the installed programs
|
|
nvim -v 2>&1 >/dev/null && export EDITOR=nvim && export MANPAGER="nvim +Man!" && export PAGER="nvim +Man!"
|