Compare commits

...

2 commits

Author SHA1 Message Date
Augusto Dwenger J. 734244b2d9
Update starship config to reduce errors
The default 500 ms for the command timeout was constantly a problem for
my mac.
I don't use dotnet -> but I have some times a 'project.json' due to some
internal tooling... This makes starship think that it is a dotnet
project and tries to give me some information based on the default
dotnet config in starship. I just dissabled it :D
2021-07-14 17:09:10 +02:00
Augusto Dwenger J. 242d96066f
Update git_alias switch and commit alias 2021-07-14 17:07:50 +02:00
2 changed files with 9 additions and 2 deletions

View file

@ -1,7 +1,9 @@
# Requires git to be installed
alias gitun="git reset HEAD"
alias gitadd="git add -p"
alias gitcheck="git checkout --"
alias gitc="git commit"
alias gits="git switch"
alias gitsb="git switch -"
alias gitc="git commit -S"
alias gitp="git push"
alias gitr="git rebase -i -S"
alias glg='git log --graph --pretty=format:"%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset" --abbrev-commit'

View file

@ -1,3 +1,8 @@
# Don't print a new line at the start of the prompt
add_newline = false
command_timeout = 1000
[dotnet]
disabled = true