From: Alexander Goussas Date: Sun, 19 Oct 2025 17:16:44 +0000 (-0500) Subject: feat: add zathura config X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=3932bad54b0ba5a2eb4f200f04110662b253d695;p=dotfiles.git feat: add zathura config --- diff --git a/Makefile.common b/Makefile.common index 0c7a4bc..499f19c 100644 --- a/Makefile.common +++ b/Makefile.common @@ -1,2 +1,2 @@ -PKGS_COMMON := nvim zsh tmux kitty ghostty +PKGS_COMMON := nvim zsh tmux kitty ghostty zathura diff --git a/ghostty/.config/ghostty/config b/ghostty/.config/ghostty/config index a1e0c2d..3798573 100644 --- a/ghostty/.config/ghostty/config +++ b/ghostty/.config/ghostty/config @@ -5,5 +5,6 @@ cursor-style = block window-padding-x = 5 window-padding-y = 5 theme = Adwaita Dark +background-opacity = 0.9 adjust-cell-height = 10 diff --git a/zathura/.config/zathura/zathurarc b/zathura/.config/zathura/zathurarc new file mode 100644 index 0000000..ea10740 --- /dev/null +++ b/zathura/.config/zathura/zathurarc @@ -0,0 +1 @@ +set selection-clipboard clipboard diff --git a/zsh/.zshrc b/zsh/.zshrc index 3862be2..2a89635 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -32,3 +32,10 @@ if [ -f '/Users/alexandergoussas/Documents/google-cloud-sdk/path.zsh.inc' ]; the # The next line enables shell command completion for gcloud. if [ -f '/Users/alexandergoussas/Documents/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/alexandergoussas/Documents/google-cloud-sdk/completion.zsh.inc'; fi + +# bun completions +[ -s "/Users/alexandergoussas/.bun/_bun" ] && source "/Users/alexandergoussas/.bun/_bun" + +# bun +export BUN_INSTALL="$HOME/.bun" +export PATH="$BUN_INSTALL/bin:$PATH"