From 3932bad54b0ba5a2eb4f200f04110662b253d695 Mon Sep 17 00:00:00 2001 From: Alexander Goussas Date: Sun, 19 Oct 2025 12:16:44 -0500 Subject: [PATCH] feat: add zathura config --- Makefile.common | 2 +- ghostty/.config/ghostty/config | 1 + zathura/.config/zathura/zathurarc | 1 + zsh/.zshrc | 7 +++++++ 4 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 zathura/.config/zathura/zathurarc 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" -- 2.43.0