dotfiles/nvim/.config/sh/alias.d/neovim.sh
Marty Oehme 083ef0a6ad
zk: Move nvim wiki index opening to zk module
While technically invoking nvim, it belongs more into the zk module
since it is only to be added if zk exists.
2025-02-07 13:11:52 +01:00

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