tmux plugins

This commit is contained in:
thek4n 2024-03-30 21:04:05 +03:00
parent 2a4b7b17d2
commit faf7b8b68b
6 changed files with 18 additions and 6 deletions

1
.gitignore vendored
View File

@ -24,5 +24,6 @@ lazy-lock.json
home/user/.config/ranger/plugins
home/user/.termux/shell
home/user/.config/tmux/plugins
home/user/.tmux/*
!home/user/.tmux/01.sh

View File

@ -7,9 +7,9 @@ set -g mouse on # Enable mouse support
set -s escape-time 0 # Delay after escape
set -g repeat-time 0 # Disable multiple commands after prefix-key
set -g base-index 1 # Window numbering starts at 1
set -g pane-base-index 1 # Pane numbering starts at 1
set -g renumber-windows on # Make windows auto renumber
set -g base-index 1 # Window numbering starts at 1
set -g pane-base-index 1 # Pane numbering starts at 1
set -g renumber-windows off # Off windows auto renumber
set -g history-limit 100000 # Scroll back history

View File

@ -0,0 +1,5 @@
# Tmux plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'laktak/extrakto'
set -g @plugin 'sainnhe/tmux-fzf'

View File

@ -2,4 +2,7 @@
source-file "$HOME/.config/tmux/mappings.conf"
source-file "$HOME/.config/tmux/options.conf"
source-file "$HOME/.config/tmux/style.conf"
source-file "$HOME/.config/tmux/style.conf"
source-file "$HOME/.config/tmux/plugins.conf"
run -b "$HOME/.config/tmux/plugins/tpm/tpm"

View File

@ -10,9 +10,9 @@ declare -xr SUB="$DOTFILES_ROOT/home/user"
declare -r -A TARGETS=(
["colors"]=".config/terminal-colors.d"
["bash"]=".config/bash .bashrc .profile %colors"
["zsh"]="%bash .config/zsh .zshenv .inputrc"
["tmux"]=".config/tmux .tmux"
["bash"]=".config/bash .bashrc .profile %colors"
["zsh"]="%tmux %bash .config/zsh .zshenv .inputrc"
["alacritty"]=".config/alacritty"
["nvim"]=".config/nvim .editorconfig .local/bin/vim_askpass_helper"
["ssh"]=""

View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
git clone https://github.com/tmux-plugins/tpm "$HOME/.config/tmux/plugins/tpm"