even more tmux
This commit is contained in:
Submodule .config/tmux/plugins/catppuccin-tmux deleted from 14a546fb64
Submodule .config/tmux/plugins/tpm deleted from 99469c4a9b
@ -2,16 +2,7 @@ unbind r
|
|||||||
bind r source-file ~/.tmux.conf
|
bind r source-file ~/.tmux.conf
|
||||||
|
|
||||||
set -g prefix C-y
|
set -g prefix C-y
|
||||||
|
set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.tmux/plugins/'
|
||||||
|
|
||||||
#set -g mouse on
|
source-file ~/.config/tmux/tmux.conf.d/plugins.conf
|
||||||
|
source-file ~/.config/tmux/tmux.conf.d/keybinds.conf
|
||||||
bind-key w select-pane -U
|
|
||||||
bind-key a select-pane -L
|
|
||||||
bind-key s select-pane -D
|
|
||||||
bind-key d select-pane -R
|
|
||||||
|
|
||||||
set -g @plugin '~/.config/tmux/plugins/tpm'
|
|
||||||
#set -g @plugin '~/.config/tmux/plugins/catppuccin-tmux'
|
|
||||||
|
|
||||||
run '~/.config/tmux/plugins/tpm'
|
|
||||||
#run '~/.config/tmux/plugins/catppuccin-tmux/catppuccin.tmux'
|
|
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"
|
62
install
62
install
@ -1,30 +1,32 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "[+] Updating System Packages..."
|
echo "[+] Updating System Packages..."
|
||||||
echo
|
echo
|
||||||
sudo apt update -qq
|
sudo apt update -qq
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "[+] Installing Dependencies..."
|
echo "[+] Installing Dependencies..."
|
||||||
echo
|
echo
|
||||||
sudo apt install -yqq \
|
sudo apt install -yqq \
|
||||||
zsh \
|
zsh \
|
||||||
curl \
|
curl \
|
||||||
exa \
|
exa \
|
||||||
direnv \
|
direnv \
|
||||||
bat \
|
bat \
|
||||||
btop \
|
btop \
|
||||||
stow
|
stow \
|
||||||
|
tmux \
|
||||||
echo
|
dos2unix
|
||||||
echo "[+] Installing Oh My Zsh..."
|
|
||||||
echo
|
echo
|
||||||
|
echo "[+] Installing Oh My Zsh..."
|
||||||
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
echo
|
||||||
|
|
||||||
echo "Include $HOME/.config/ssh/*" >> "$HOME/.ssh/config"
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
||||||
|
|
||||||
./setup
|
echo "Include $HOME/.config/ssh/*" >> "$HOME/.ssh/config"
|
||||||
|
|
||||||
|
./setup
|
||||||
|
2
setup
2
setup
@ -36,6 +36,8 @@ set -e
|
|||||||
echo "[+] Cloning submodules..."
|
echo "[+] Cloning submodules..."
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
||||||
|
find ./config/tmux -type d -name '.git*' -prune -o -type f -print0 | xargs -0 dos2unix
|
||||||
|
|
||||||
echo "[+] Creating Gitconfigs..."
|
echo "[+] Creating Gitconfigs..."
|
||||||
|
|
||||||
(
|
(
|
||||||
|
Reference in New Issue
Block a user