diff options
| author | krolxon <krolyxon@tutanota.com> | 2025-08-16 21:34:18 +0530 |
|---|---|---|
| committer | krolxon <krolyxon@tutanota.com> | 2025-08-16 21:34:18 +0530 |
| commit | 9226cefdd3bf54157213a5cc2c550deaf353d043 (patch) | |
| tree | 00744f662a4008194761b01f3e92372546479979 /.config | |
| parent | 77e9bf014127dfd27c53a82a701ced071bbf9e31 (diff) | |
remove stow-local-ignore, add git config
Diffstat (limited to '.config')
| -rw-r--r-- | .config/git/config | 8 | ||||
| -rw-r--r-- | .config/shell/aliasrc | 3 |
2 files changed, 9 insertions, 2 deletions
diff --git a/.config/git/config b/.config/git/config new file mode 100644 index 0000000..bee4bef --- /dev/null +++ b/.config/git/config @@ -0,0 +1,8 @@ +[user] + email = krolyxon@tutanota.com + name = krolxon +[init] + defaultBranch = master + +[push] + autosetupremote = true diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index dd22538..7a8e6c5 100644 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -6,7 +6,6 @@ alias \ ls='ls -hN --group-directories-first --color=auto' \ lsa='ls -lAhN --group-directories-first --color=auto' \ - dots='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' \ lf="yazi" \ nb="newsboat" \ sxiv="nsxiv" \ @@ -43,7 +42,7 @@ alias \ gp='git push' \ gC='git clone' -ec() {find ~/.config -type f | fzf | xargs -r $EDITOR ;} +ec() {find ~/.config \( -type f -o -type l \) | fzf | xargs -r $EDITOR} es() { cd ~/.local/bin; $EDITOR $(fzf) ;} ef() {fzf | xargs -r -I % $EDITOR % ;} of() {fzf | xargs -r -I % xdg-open % ; } |
