mirror of
https://github.com/gyoder/dots.git
synced 2026-02-27 17:03:45 +00:00
tmux: initial tmux config
This commit is contained in:
parent
bbae1a6f59
commit
7ff818b3f1
2 changed files with 26 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1,7 +1,8 @@
|
||||||
vim/.vim/backup
|
vim/.vim/backup
|
||||||
vim/.config/nvim/plugin/packer_compiled.lua
|
vim/.config/nvim/plugin/packer_compiled.lua
|
||||||
fish/.config/fish/fish_variables
|
fish/.config/fish/fish_variables
|
||||||
|
tmux/.tmux/plugins
|
||||||
|
fish/.config/fish/fishd.tmp*
|
||||||
|
|
||||||
# Compiled Lua sources
|
# Compiled Lua sources
|
||||||
luac.out
|
luac.out
|
||||||
|
|
|
||||||
24
tmux/.tmux.conf
Normal file
24
tmux/.tmux.conf
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
# Options
|
||||||
|
set -g mouse on
|
||||||
|
set -g default-terminal "screen-256color"
|
||||||
|
set-option -sa terminal-overrides ',xterm-256color:Tc'
|
||||||
|
set-window-option -g mode-keys vi
|
||||||
|
set -g status-position top
|
||||||
|
set-option -g set-clipboard on
|
||||||
|
set -g @yank_action "copy-pipe"
|
||||||
|
|
||||||
|
# Keybinds
|
||||||
|
set-option -g prefix C-\\
|
||||||
|
unbind C-b
|
||||||
|
bind C-\\ send-prefix
|
||||||
|
bind r source-file ~/.tmux.conf
|
||||||
|
|
||||||
|
|
||||||
|
# Plugins
|
||||||
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||||
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
run '~/.tmux/plugins/tpm/tpm'
|
||||||
Loading…
Add table
Add a link
Reference in a new issue