While technically invoking nvim, it belongs more into the zk module since it is only to be added if zk exists.
9 lines
176 B
Bash
9 lines
176 B
Bash
#!/usr/bin/env sh
|
|
|
|
# v shorthand for neovim
|
|
if exist nvim; then
|
|
alias v="nvim"
|
|
alias vim="nvim"
|
|
|
|
alias vs='nvim +"lua require \"personal.scratchpad\".create()"'
|
|
fi
|