Tmux config
This commit is contained in:
parent
7ef3f33b39
commit
745432b203
|
@ -84,7 +84,7 @@ set -g base-index 1
|
||||||
set -g pane-base-index 1
|
set -g pane-base-index 1
|
||||||
|
|
||||||
# custom predefined layouts
|
# custom predefined layouts
|
||||||
bind M-l source-file ~/.tmux/layouts/dev.tmux
|
bind M-l source-file $XDG_CONFIG_HOME/tmux/layouts/dev.tmux
|
||||||
|
|
||||||
# present a menu of urls to open from the visible pane
|
# present a menu of urls to open from the visible pane
|
||||||
# TODO: fzf-ify this
|
# TODO: fzf-ify this
|
||||||
|
|
|
@ -3,15 +3,15 @@
|
||||||
mkdir -p "$HOME/.config/systemd/user"
|
mkdir -p "$HOME/.config/systemd/user"
|
||||||
|
|
||||||
# tmux plugin manager
|
# tmux plugin manager
|
||||||
git clone https://github.com/tmux-plugins/tpm "$HOME/.tmux/plugins/tpm"
|
git clone https://github.com/tmux-plugins/tpm "$XDG_CONFIG_HOME/tmux/plugins/tpm"
|
||||||
|
|
||||||
# load tmux config
|
# load tmux config
|
||||||
tmux source-file "$HOME/.tmux.conf"
|
tmux source-file "$HOME/.tmux.conf"
|
||||||
|
|
||||||
# clean, install, and update plugins
|
# clean, install, and update plugins
|
||||||
bash "$HOME/.tmux/plugins/tpm/bindings/clean_plugins"
|
bash "$XDG_CONFIG_HOME/tmux/plugins/tpm/bindings/clean_plugins"
|
||||||
bash "$HOME/.tmux/plugins/tpm/bindings/install_plugins"
|
bash "$XDG_CONFIG_HOME/tmux/plugins/tpm/bindings/install_plugins"
|
||||||
bash "$HOME/.tmux/plugins/tpm/bindings/update_plugins"
|
bash "$XDG_CONFIG_HOME/tmux/plugins/tpm/bindings/update_plugins"
|
||||||
|
|
||||||
# load tmux config
|
# load tmux config
|
||||||
tmux source-file "$HOME/.tmux.conf"
|
tmux source-file "$HOME/.tmux.conf"
|
||||||
|
|
|
@ -3,15 +3,15 @@
|
||||||
mkdir -p "$HOME/.config/systemd/user"
|
mkdir -p "$HOME/.config/systemd/user"
|
||||||
|
|
||||||
# tmux plugin manager
|
# tmux plugin manager
|
||||||
git clone https://github.com/tmux-plugins/tpm "$XDG_CONFIG_HOME/.tmux/plugins/tpm"
|
git clone https://github.com/tmux-plugins/tpm "$XDG_CONFIG_HOME/tmux/plugins/tpm"
|
||||||
|
|
||||||
# load tmux config
|
# load tmux config
|
||||||
tmux source-file "$HOME/.tmux.conf"
|
tmux source-file "$HOME/.tmux.conf"
|
||||||
|
|
||||||
# clean, install, and update plugins
|
# clean, install, and update plugins
|
||||||
bash "$XDG_CONFIG_HOME/.tmux/plugins/tpm/bindings/clean_plugins"
|
bash "$XDG_CONFIG_HOME/tmux/plugins/tpm/bindings/clean_plugins"
|
||||||
bash "$XDG_CONFIG_HOME/.tmux/plugins/tpm/bindings/install_plugins"
|
bash "$XDG_CONFIG_HOME/tmux/plugins/tpm/bindings/install_plugins"
|
||||||
bash "$XDG_CONFIG_HOME/.tmux/plugins/tpm/bindings/update_plugins"
|
bash "$XDG_CONFIG_HOME/tmux/plugins/tpm/bindings/update_plugins"
|
||||||
|
|
||||||
# load tmux config
|
# load tmux config
|
||||||
tmux source-file "$HOME/.tmux.conf"
|
tmux source-file "$HOME/.tmux.conf"
|
||||||
|
|
Reference in a new issue