Files
dotfiles/meta/envrc
Julian Prein 2afafef362 meta:envrc: Generate vim helptags when entering
Move the commands into a function, so that the function can be run in
the background.
2023-01-27 00:06:26 +01:00

8 lines
115 B
Plaintext

envrc() {
nvim -es <<<"helptags ALL"
git fetch --all
}
# Run in background
envrc 0<&- &>/dev/null 3>&- & disown