Compare commits
4 Commits
5d24bfda0b
...
729089d8aa
Author | SHA1 | Date | |
---|---|---|---|
729089d8aa | |||
048b69ae13 | |||
0d90f23ce5 | |||
248068c55a |
1
.config/.gitignore
vendored
1
.config/.gitignore
vendored
@ -5,3 +5,4 @@
|
||||
btop/btop.log
|
||||
!neofetch/
|
||||
!ssh/
|
||||
!tmux/
|
||||
|
8
.config/tmux/tmux.conf
Normal file
8
.config/tmux/tmux.conf
Normal 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
|
2
.config/tmux/tmux.conf.d/catppuccin.conf
Normal file
2
.config/tmux/tmux.conf.d/catppuccin.conf
Normal file
@ -0,0 +1,2 @@
|
||||
set -g @catppuccin_flavor "mocha"
|
||||
set -g @catppuccin_window_status_style "rounded"
|
6
.config/tmux/tmux.conf.d/keybinds.conf
Normal file
6
.config/tmux/tmux.conf.d/keybinds.conf
Normal 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
|
9
.config/tmux/tmux.conf.d/plugins.conf
Normal file
9
.config/tmux/tmux.conf.d/plugins.conf
Normal 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
16
.gitignore
vendored
@ -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
6
.gitmodules
vendored
@ -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
7
.stow-local-ignore
Normal file
@ -0,0 +1,7 @@
|
||||
.git
|
||||
install
|
||||
setup
|
||||
.gitignore
|
||||
.gitmodules
|
||||
.zshenv.template
|
||||
README.md
|
1
.tmux.conf
Normal file
1
.tmux.conf
Normal file
@ -0,0 +1 @@
|
||||
source-file ~/.config/tmux/tmux.conf
|
5
install
5
install
@ -16,7 +16,10 @@ sudo apt install -yqq \
|
||||
exa \
|
||||
direnv \
|
||||
bat \
|
||||
btop
|
||||
btop \
|
||||
stow \
|
||||
tmux \
|
||||
dos2unix
|
||||
|
||||
echo
|
||||
echo "[+] Installing Oh My Zsh..."
|
||||
|
28
setup
28
setup
@ -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)
|
||||
|
Reference in New Issue
Block a user