1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-27 13:30:31 +01:00

Compare commits

...

2 Commits

Author SHA1 Message Date
4d37421da4 Emoji are bloat. Nobody asked for this (ノ ゜Д゜)ノ ︵ ┻━┻ 2023-01-02 17:29:45 +01:00
00c06d33bf Update aliases 2022-12-16 11:39:45 +01:00
2 changed files with 14 additions and 2 deletions

View File

@@ -14,3 +14,6 @@ gsettings set org.gnome.desktop.wm.keybindings begin-move "['']"
# No F1 button in Gnome Terminal
gsettings set "org.gnome.Terminal.Legacy.Keybindings:/org/gnome/terminal/legacy/keybindings/" help 'disabled'
# No emoji ibus hotkey
gsettings set org.freedesktop.ibus.panel.emoji hotkey "[]"

View File

@@ -69,6 +69,9 @@ AUTO_NOTIFY_IGNORE+=(
"sudoedit"
"ipython"{,3}
"sem "{attach,debug}
"psql"
"sqlite3"
"iotop"
)
@@ -92,9 +95,10 @@ alias :q='exit'
alias wget="wget --hsts-file=\"$XDG_CACHE_HOME/wget-hsts\""
alias makej="make -j$(nproc)"
alias sdc='sudo docker-compose'
alias nrc='nix run -c'
# Used to be nix run -c. That no longer works but my muscle memory does
alias nrc='nix shell --file default.nix -c'
alias gcs='gcloud compute ssh --tunnel-through-iap'
alias gscp='gcloud compute scp'
alias gscp='gcloud compute scp --tunnel-through-iap'
alias gci='gcloud compute instances'
# Not an alias but useful nonetheless.
@@ -291,3 +295,8 @@ if (( $+commands[bat] )); then
# And replace cat while we're at it
alias cat='bat'
fi
# Source Nix if it's installed. Should be done by the WM, but it isn't
if [[ -f /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh ]]; then
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
fi