diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2022-12-09 21:01:33 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2022-12-09 21:01:33 +0100 |
| commit | ce899c5fd713d4c4eafa88877cf22dbaa02f5c7d (patch) | |
| tree | 1fb93c4a7835b555fcd1f378b3084867045f475d /config/fish | |
| parent | d5af56a7613eb1398f2f358aad3eca74ee024a5e (diff) | |
| download | dotfiles-ce899c5fd713d4c4eafa88877cf22dbaa02f5c7d.tar.gz dotfiles-ce899c5fd713d4c4eafa88877cf22dbaa02f5c7d.tar.bz2 dotfiles-ce899c5fd713d4c4eafa88877cf22dbaa02f5c7d.zip | |
Added pacman/yay colors, Fixing gpg in terminal
Diffstat (limited to 'config/fish')
| -rw-r--r-- | config/fish/config.fish | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config/fish/config.fish b/config/fish/config.fish index 7ba57d7..2d4fd8d 100644 --- a/config/fish/config.fish +++ b/config/fish/config.fish @@ -76,6 +76,8 @@ set -gx MINIKUBE_IN_STYLE false # disable cringe minikube emojies set -gx HOMEBREW_NO_AUTO_UPDATE 1 # disable brew updating stuff when I install +set -gx GPG_TTY "$(tty)" + if status is-interactive fish_vi_key_bindings @@ -84,6 +86,8 @@ if status is-interactive # common commands alias grep 'grep --color=auto' + alias pacman 'pacman --color=auto' + alias yay 'yay --color=auto' alias tree 'tree -C' alias less 'less -N' # enable line number alias nvim 'VIMINIT="" /usr/bin/nvim' @@ -171,6 +175,7 @@ if status is-login # https://wiki.archlinux.org/title/Xorg/Keyboard_configuration # setting the keyrepeat delay and interval here as the default ones # since some applications reset the those if we use xset r rate 200 30 instead - exec startx "$XDG_CONFIG_HOME/x11/xinitrc" -- -ardelay 200 -arinterval 30 + startx "$XDG_CONFIG_HOME/x11/xinitrc" -- -ardelay 200 -arinterval 30 + poweroff end end |
