5 lines
89 B
Bash
Executable file
5 lines
89 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if command -v nvim >/dev/null 2>&1; then
|
|
nvim '+PlugInstall' '+qall'
|
|
fi
|