Compare commits

...

4 Commits

Author SHA1 Message Date
729089d8aa even more tmux 2025-06-14 22:32:16 +02:00
048b69ae13 add tmux plugins 2025-06-14 22:30:49 +02:00
0d90f23ce5 add tmux 2025-06-14 22:30:03 +02:00
248068c55a add stow 2025-06-14 22:29:14 +02:00
13 changed files with 97 additions and 40 deletions

1
.config/.gitignore vendored
View File

@ -5,3 +5,4 @@
btop/btop.log
!neofetch/
!ssh/
!tmux/

8
.config/tmux/tmux.conf Normal file
View File

@ -0,0 +1,8 @@
unbind r
bind r source-file ~/.tmux.conf
set -g prefix C-y
set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.tmux/plugins/'
source-file ~/.config/tmux/tmux.conf.d/plugins.conf
source-file ~/.config/tmux/tmux.conf.d/keybinds.conf

View File

@ -0,0 +1,2 @@
set -g @catppuccin_flavor "mocha"
set -g @catppuccin_window_status_style "rounded"

View File

@ -0,0 +1,6 @@
bind-key w select-pane -U
bind-key a select-pane -L
bind-key s select-pane -D
bind-key d select-pane -R
bind-key c detach

View File

@ -0,0 +1,9 @@
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'catppuccin/tmux'
set -g @catppuccin_flavor "macchiato"
set -g @catppuccin_window_status_style "rounded"
#source-file '~/.config/tmux/tmux.conf.d/catppuccin.conf'
run "~/.tmux/plugins/tpm/tpm"

16
.gitignore vendored
View File

@ -1,15 +1 @@
/*
!setup
!zsh/
!.gitignore
!.alias.d/
!.config/
!.gitconfig
!.gitconfig.d
!.p10k.zsh
!.zshrc
!.zshenv.template
!.profile
!install
!README.md
.zshenv

6
.gitmodules vendored
View File

@ -7,3 +7,9 @@
[submodule "zsh/themes/powerlevel10k"]
path = zsh/themes/powerlevel10k
url = https://github.com/romkatv/powerlevel10k
[submodule ".config/tmux/plugins/tpm"]
path = .config/tmux/plugins/tpm
url = https://github.com/tmux-plugins/tpm
[submodule ".config/tmux/plugins/catppuccin-tmux"]
path = .config/tmux/plugins/catppuccin-tmux
url = https://github.com/catppuccin/tmux

7
.stow-local-ignore Normal file
View File

@ -0,0 +1,7 @@
.git
install
setup
.gitignore
.gitmodules
.zshenv.template
README.md

1
.tmux.conf Normal file
View File

@ -0,0 +1 @@
source-file ~/.config/tmux/tmux.conf

View File

@ -16,7 +16,10 @@ sudo apt install -yqq \
exa \
direnv \
bat \
btop
btop \
stow \
tmux \
dos2unix
echo
echo "[+] Installing Oh My Zsh..."

28
setup
View File

@ -1,3 +1,4 @@
<<<<<<< HEAD
#!/usr/bin/env bash
set -e
@ -27,3 +28,30 @@ if [ ! -f "$PWD/.zshenv" ]; then
fi
ln -sf "$PWD/.zshenv" "$HOME/.zshenv"
=======
#!/usr/bin/env bash
set -e
echo "[+] Cloning submodules..."
git submodule update --init --recursive
find ./config/tmux -type d -name '.git*' -prune -o -type f -print0 | xargs -0 dos2unix
echo "[+] Creating Gitconfigs..."
(
for config in $PWD/.gitconfig.d/*.gitconfig; do
echo "[include]"
echo " path = $config"
done;
) > "$HOME/.gitconfig"
echo "[+] Creating symlinks..."
if [ ! -f "$PWD/.zshenv" ]; then
cp "$PWD/.zshenv.template" "$PWD/.zshenv"
fi
stow .
>>>>>>> ae6c9c8 (add tmux plugins)