this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix TPM config

+13 -11
+1 -1
nvim/Makefile
··· 1 1 XDG_CONFIG_HOME ?= ${HOME}/.config 2 2 3 3 install: 4 - $(LN) nvim $(XDG_CONFIG_HOME)/nvim 4 + $(LN) . $(XDG_CONFIG_HOME)/nvim 5 5 # nvim +PlugUpdate +qall # Currently doesn't work 6 6 @echo 'Run NeoVim and execute `:PlugInstall`' 7 7
+2
tmux/.gitignore
··· 1 + /plugins/* 2 + !/plugins/tpm
+2 -2
tmux/Makefile
··· 1 1 install: 2 - $(LN) tmux/config ${HOME}/.tmux.conf 3 - $(LN) tmux ${HOME}/.tmux 2 + $(LN) init.tmux ${HOME}/.tmux.conf 3 + $(LN) . ${HOME}/.tmux 4 4 5 5 clean: 6 6 rm ${HOME}/.tmux.conf ${HOME}/.tmux
+8 -8
tmux/config tmux/init.tmux
··· 1 1 unbind C-b 2 2 set -g prefix C-q 3 3 4 - # List of plugins 5 - set -g @plugin 'tmux-plugins/tpm' 6 - set -g @plugin 'tmux-plugins/tmux-sensible' 7 - 8 - set -g @plugin 'tmux-plugins/tmux-yank' 9 - 10 - source "$HOME/.tmux/themes/agnoster.tmux" 11 - 12 4 set -g mouse-resize-pane on 13 5 set -g mouse-select-pane on 14 6 set -g mouse-select-window on ··· 16 8 17 9 set -g set-titles on 18 10 11 + source "$HOME/.tmux/themes/agnoster.tmux" 12 + 19 13 # Smart pane switching with awareness of vim splits 20 14 is_vim='echo "#{pane_current_command}" | grep -iqE "(^|\/)g?(view|n?vim?)(diff)?$"' 21 15 bind -n C-h if-shell "$is_vim" "send-keys C-h" "select-pane -L" ··· 27 21 # Allow sending prefix to child 28 22 bind-key j command-prompt -p "Join pane from:" "join-pane -s '%%'" 29 23 bind-key s command-prompt -p "Send pane to:" "join-pane -t '%%'" 24 + 25 + # List of plugins 26 + set -g @plugin 'tmux-plugins/tpm' 27 + set -g @plugin 'tmux-plugins/tmux-sensible' 28 + 29 + set -g @plugin 'tmux-plugins/tmux-yank' 30 30 31 31 # Initialize TMUX plugin manager 32 32 run '~/.tmux/plugins/tpm/tpm'