mirror of
https://github.com/eRgo35/dots.git
synced 2025-12-16 07:26:12 +01:00
tmux
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -7,3 +7,4 @@ ulauncher/.config/ulauncher/ext_preferences
|
|||||||
spicetify/.config/spicetify/Extracted
|
spicetify/.config/spicetify/Extracted
|
||||||
.zcompdump
|
.zcompdump
|
||||||
.zcompcache
|
.zcompcache
|
||||||
|
tmux/.config/tmux/plugins/
|
||||||
|
|||||||
Submodule desktop/.config/dwm updated: a1725eb3c6...d4fed3cac6
@@ -1,15 +1,17 @@
|
|||||||
[Settings]
|
[Settings]
|
||||||
gtk-theme-name=gruvbox-dark-gtk
|
gtk-theme-name=Adwaita-dark
|
||||||
gtk-icon-theme-name=gruvbox-dark-icons-gtk
|
gtk-icon-theme-name=Papirus-Dark
|
||||||
gtk-font-name=Sans 10
|
gtk-font-name=Cantarell 11
|
||||||
gtk-cursor-theme-name=Catppuccin-Macchiato-Yellow-Cursors
|
gtk-cursor-theme-name=elementary
|
||||||
gtk-cursor-theme-size=0
|
gtk-cursor-theme-size=20
|
||||||
gtk-toolbar-style=GTK_TOOLBAR_BOTH
|
gtk-toolbar-style=GTK_TOOLBAR_BOTH
|
||||||
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
||||||
gtk-button-images=1
|
gtk-button-images=1
|
||||||
gtk-menu-images=1
|
gtk-menu-images=1
|
||||||
gtk-enable-event-sounds=1
|
gtk-enable-event-sounds=1
|
||||||
gtk-enable-input-feedback-sounds=1
|
gtk-enable-input-feedback-sounds=0
|
||||||
gtk-xft-antialias=1
|
gtk-xft-antialias=1
|
||||||
gtk-xft-hinting=1
|
gtk-xft-hinting=1
|
||||||
gtk-xft-hintstyle=hintfull
|
gtk-xft-hintstyle=hintslight
|
||||||
|
gtk-xft-rgba=rgb
|
||||||
|
gtk-application-prefer-dark-theme=1
|
||||||
|
|||||||
1
tmux/.config/tmux/plugins/tmux-gruvbox
Submodule
1
tmux/.config/tmux/plugins/tmux-gruvbox
Submodule
Submodule tmux/.config/tmux/plugins/tmux-gruvbox added at 3f9e38d724
1
tmux/.config/tmux/plugins/tmux-sensible
Submodule
1
tmux/.config/tmux/plugins/tmux-sensible
Submodule
Submodule tmux/.config/tmux/plugins/tmux-sensible added at 25cb91f42d
1
tmux/.config/tmux/plugins/tmux-yank
Submodule
1
tmux/.config/tmux/plugins/tmux-yank
Submodule
Submodule tmux/.config/tmux/plugins/tmux-yank added at acfd36e4fc
1
tmux/.config/tmux/plugins/tpm
Submodule
1
tmux/.config/tmux/plugins/tpm
Submodule
Submodule tmux/.config/tmux/plugins/tpm added at 99469c4a9b
1
tmux/.config/tmux/plugins/vim-tmux-navigator
Submodule
1
tmux/.config/tmux/plugins/vim-tmux-navigator
Submodule
Submodule tmux/.config/tmux/plugins/vim-tmux-navigator added at 5b3c701686
59
tmux/.config/tmux/tmux.conf
Normal file
59
tmux/.config/tmux/tmux.conf
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
# Ctrl-Space prefix
|
||||||
|
set -g prefix C-s
|
||||||
|
|
||||||
|
# vi keybinds
|
||||||
|
setw -g mode-keys vi
|
||||||
|
bind-key h select-pane -L
|
||||||
|
bind-key j select-pane -D
|
||||||
|
bind-key k select-pane -U
|
||||||
|
bind-key l select-pane -R
|
||||||
|
|
||||||
|
set -g default-terminal "screen-256color"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# history limit
|
||||||
|
set -g history-limit 5000
|
||||||
|
|
||||||
|
# increase repeat time
|
||||||
|
set -g repeat-time 1000
|
||||||
|
|
||||||
|
# decrese command delay
|
||||||
|
set -sg escape-time 1
|
||||||
|
|
||||||
|
# faster key repetition
|
||||||
|
set -s escape-time 0
|
||||||
|
|
||||||
|
setw -g aggressive-resize on
|
||||||
|
|
||||||
|
# reload tmux while using tmux
|
||||||
|
bind r source-file ~/.config/tmux/tmux.conf \; display "Reloaded!"
|
||||||
|
|
||||||
|
# Shift Alt vim keys to switch windows
|
||||||
|
bind -n M-H previous-window
|
||||||
|
bind -n M-L next-window
|
||||||
|
|
||||||
|
# Vim like yank
|
||||||
|
bind-key -T copy-mode-vi v send-keys -X begin-selection
|
||||||
|
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
|
||||||
|
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
|
||||||
|
|
||||||
|
# Open panes in current directory
|
||||||
|
bind '"' split-window -v -c "#{pane_current_path}"
|
||||||
|
bind % split-window -h -c "#{pane_current_path}"
|
||||||
|
|
||||||
|
# List of plugins
|
||||||
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||||
|
set -g @plugin 'egel/tmux-gruvbox'
|
||||||
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
||||||
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||||||
|
|
||||||
|
# Other examples:
|
||||||
|
# set -g @plugin 'github_username/plugin_name'
|
||||||
|
# set -g @plugin 'github_username/plugin_name#branch'
|
||||||
|
# set -g @plugin 'git@github.com:user/plugin'
|
||||||
|
# set -g @plugin 'git@bitbucket.com:user/plugin'
|
||||||
|
|
||||||
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||||||
|
run '~/.tmux/plugins/tpm/tpm'
|
||||||
@@ -2,6 +2,7 @@ fpath+=( /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-r
|
|||||||
source /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-romkatv-SLASH-powerlevel10k/powerlevel10k.zsh-theme
|
source /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-romkatv-SLASH-powerlevel10k/powerlevel10k.zsh-theme
|
||||||
source /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-romkatv-SLASH-powerlevel10k/powerlevel9k.zsh-theme
|
source /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-romkatv-SLASH-powerlevel10k/powerlevel9k.zsh-theme
|
||||||
fpath+=( /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-ohmyzsh-SLASH-ohmyzsh/lib )
|
fpath+=( /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-ohmyzsh-SLASH-ohmyzsh/lib )
|
||||||
|
source /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-ohmyzsh-SLASH-ohmyzsh/lib/async_prompt.zsh
|
||||||
source /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-ohmyzsh-SLASH-ohmyzsh/lib/bzr.zsh
|
source /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-ohmyzsh-SLASH-ohmyzsh/lib/bzr.zsh
|
||||||
source /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-ohmyzsh-SLASH-ohmyzsh/lib/clipboard.zsh
|
source /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-ohmyzsh-SLASH-ohmyzsh/lib/clipboard.zsh
|
||||||
source /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-ohmyzsh-SLASH-ohmyzsh/lib/cli.zsh
|
source /home/mike/.cache/antidote/https-COLON--SLASH--SLASH-github.com-SLASH-ohmyzsh-SLASH-ohmyzsh/lib/cli.zsh
|
||||||
|
|||||||
Reference in New Issue
Block a user