chezmoi-ify

This commit is contained in:
Barak Michener 2024-05-18 18:27:41 -07:00
parent e04f3e0fb8
commit 30847ce7ab
13 changed files with 5859 additions and 0 deletions

8
bin/executable_vi Normal file
View file

@ -0,0 +1,8 @@
#!/bin/sh
export TERM=xterm-256color
if [ -n "`which nvim`" ]; then
exec -a nvim nvim "$@"
else
exec -a vim vim "$@"
fi