diff options
author | otg <otg@sateoki.xyz> | 2022-04-28 17:12:57 +0100 |
---|---|---|
committer | otg <otg@sateoki.xyz> | 2022-04-28 17:12:57 +0100 |
commit | 6861b1560127e68b8da2eb1fb657b47acfc84cad (patch) | |
tree | 1fc103b125654cb284563925d8db2f163ae3e841 /zsh/.zshrc | |
parent | 3d739a957daa489f17bd041233f63b8a33c7fb84 (diff) |
Moved LESSHISTFILE export to zshenv
Diffstat (limited to 'zsh/.zshrc')
-rw-r--r-- | zsh/.zshrc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -25,7 +25,6 @@ autoload -U colors && colors autoload -U promptinit && promptinit ########## Reducing clutter in home directory ########## -export LESSHISTFILE=/dev/null # Remove ~/.lesshst generation alias feh="feh --no-fehbg" alias newsboat="newsboat -u ~/.config/newsboat/urls" # TODO: add all XDG directories in the right places, and then run the commands @@ -135,6 +134,11 @@ gar() { # Add remotes git remote add github git@github.com:GeorgeAbbott/$1.git git remote add gitlab git@gitlab.com:GeorgeAbbott/$1.git } +gro() { # Rename all origins + git remote set-url origin gitea@git.gabbott.xyz:self/$1.git + git remote set-url github git@github.com:GeorgeAbbott/$1.git + git remote set-url gitlab git@gitlab.com:GeorgeAbbott/$1.git +} # misc alias pkg-query="pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)'" |