[tmux] clean-up comments

This commit is contained in:
eleith 2023-02-05 02:58:44 +00:00
parent 4e34db4b88
commit d3bf682fb5
2 changed files with 18 additions and 8 deletions

View File

@ -4,12 +4,21 @@ set fish_greeting ""
set -x EDITOR nvim
set -x VISUAL nvim
# make binaries available in $PATH
set PATH "$HOME/.local/bin" $PATH
set PATH "$HOME/shelf/go/bin" $PATH
set PATH "$HOME/.cargo/bin" $PATH
set PATH "$HOME/.local/share/gem/ruby/3.1.0/bin" $PATH
set -gx GOPATH "$HOME/shelf/go"
# add local binaries to path
if test -f "$HOME/.local/bin"
set PATH "$HOME/.local/bin" $PATH
end
# add go binaries to path
if test -f "$HOME/.go"
set -gx GOPATH "$HOME/.go"
set PATH "$HOME/.go/bin" $PATH
end
# add rust binaries to path
if test -f "$HOME/.cargo/bin"
set PATH "$HOME/.cargo/bin" $PATH
end
# customize fzf to hide preview and make it toggle
set -gx FZF_DEFAULT_OPTS "

View File

@ -81,7 +81,7 @@ set -g status-left-length "100"
setw -g window-status-activity-style "none"
setw -g window-status-separator ""
# VI-like binding for copy/paste mode
# vi-like binding for copy/paste mode
unbind [
bind Escape copy-mode
unbind p
@ -94,8 +94,9 @@ set -g escape-time 10
set -g status-position bottom
bind t set-option status
# themes
source-file ~/.config/tmux/tmux-dark.conf
bind R source-file ~/.config/tmux/tmux-light.conf
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
# initialize tpm (tmux plugin manager)
run '~/.local/share/tmux/plugins/tpm/tpm'