Termux templating/packages

This commit is contained in:
2019-07-18 11:09:33 -04:00
parent b077d1c709
commit feabd4e98b
20 changed files with 197 additions and 34 deletions

View File

@@ -46,7 +46,11 @@ function cd --description "Change directory"
set -g __fish_cd_direction prev
set -U last_dir $PWD
lsd -a
{{ if (not (eq .linux_os "termux")) }}
lsd -a
{{ else }}
ls -a
{{ end }}
end
return $cd_status

View File

@@ -1,5 +1,5 @@
function git-amend-push
git add -A .
git add -A
and git commit --amend --no-edit -S
and git push --force
end