Improve auto complete and add a new dir for dependency install scripts

This commit is contained in:
Snoweuph 2024-10-18 23:43:41 +02:00
parent 628f5d1f90
commit bbfdfb16ec
Signed by: Snoweuph
GPG key ID: BEFC41DA223CEC55
6 changed files with 22 additions and 1 deletions

View file

@ -24,7 +24,7 @@
prunetags = true
[alias]
adog = log --all --decorate --oneline --graph
adog ="!git-graph --model none --color=always | LESS='-R' less"
fl = push --force-with-lease
prune-branches = "!git fetch -p && git branch -vv | grep ': gone]' | awk '{print $1}' | xargs -r git branch -d"
show-last-commit = diff HEAD^

3
.gitignore vendored
View file

@ -27,3 +27,6 @@
# Include Resource
!Resources/
# Include local
!.local/

6
.local/.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
# Ignore Everything By Default
/*
!.gitignore
# Include Share
!share/

6
.local/share/.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
# Ignore Everything By Default
/*
!.gitignore
# Include dotfiles
!dotfiles/

View file

@ -0,0 +1,3 @@
#!/bin/sh
cargo install git-graph

3
.zshrc
View file

@ -11,6 +11,9 @@ zinit snippet OMZP::colored-man-pages
zinit light zsh-users/zsh-autosuggestions
zinit light zdharma-continuum/fast-syntax-highlighting
autoload -Uz compinit
compinit
# Oh My Posh
#########################################################
export PATH=$PATH:"$HOME/.local/bin"