Compare commits

..

2 Commits

Author SHA1 Message Date
Noah Masur
2bfb8ea8b5
disable tab previews in firefox 2024-09-27 14:28:44 -04:00
Noah Masur
e91d6665fb
add git abbreviation for deleting branches 2024-09-27 14:28:13 -04:00
2 changed files with 7 additions and 1 deletions

View File

@ -71,6 +71,8 @@
"cookiebanners.ui.desktop.enabled" = true; # Reject cookie popups
"devtools.command-button-screenshot.enabled" = true; # Scrolling screenshot of entire page
"svg.context-properties.content.enabled" = true; # Sidebery styling
"browser.tabs.hoverPreview.enabled" = false; # Disable tab previews
"browser.tabs.hoverPreview.showThumbnails" = false; # Disable tab previews
};
userChrome = ''
:root {

View File

@ -113,7 +113,11 @@ in
gpd = "git push origin -d";
gbd = "git branch -d";
gbD = "git branch -D";
gdd = "git-delete-both";
gdd = {
position = "anywhere";
setCursor = true;
expansion = "BRANCH=% git push origin -d $BRANCH and git branch -d $BRANCH";
};
gr = "git reset";
grh = "git reset --hard";
gm = "git merge";