1
0
Fork 0

migrate astronvim conf to astronvim v4

This commit is contained in:
cătălin 2024-08-27 18:27:48 +02:00
commit 6c59294bbb
No known key found for this signature in database
8 changed files with 138 additions and 125 deletions

View file

@ -60,3 +60,19 @@ function fish_right_prompt
echo -e -n -s $k8s_color "($k8s_context)"
end
function g_reset
if not set -q argv[1]
set argv[1] 1
end
git reset "HEAD~$argv[1]"
end
function g_undo_reset
if not set -q argv[1]
set argv[1] 1
end
git reset "HEAD@{$argv[1]}"
end