shell qol update

This commit is contained in:
js0ny 2025-02-03 09:23:00 +00:00
parent 0bc474161a
commit 38d3bf7ae9
6 changed files with 31 additions and 2 deletions

View file

@ -47,6 +47,12 @@ function tv
touch $argv[1] && nvim $argv[1]
end
# Create a new file, if the directory does not exist, create it
# Arg: a file name
function mt
mkdir -p (dirname $argv[1]) && touch $argv[1]
end
# Use neovide as gVim
abbr --add gvi "neovide"