this repo has no description
1
fork

Configure Feed

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

Add TPM manager

+16 -18
+3
.gitmodules
··· 1 + [submodule "tmux/plugins/tpm"] 2 + path = tmux/plugins/tpm 3 + url = https://github.com/tmux-plugins/tpm.git
+3
Makefile
··· 11 11 $(TARGETS): 12 12 $(MAKE) -C $@ install 13 13 14 + update: 15 + @git submodule foreach git pull 16 + 14 17 lein: 15 18 $(WGET) -Obin/lein https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein 16 19 chmod +x bin/lein
+2 -1
nvim/init.vim
··· 12 12 Plug 'nathanaelkane/vim-indent-guides' 13 13 14 14 " Languages 15 + Plug 'Blackrush/vim-gocode' 15 16 Plug 'cespare/vim-toml' 16 17 Plug 'dag/vim-fish' 17 18 Plug 'ekalinin/Dockerfile.vim' 18 19 Plug 'elixir-lang/vim-elixir' 19 20 Plug 'rust-lang/rust.vim' 20 - Plug 'Blackrush/vim-gocode' 21 + Plug 'tmux-plugins/vim-tmux' 21 22 22 23 " Git 23 24 Plug 'airblade/vim-gitgutter'
+1 -1
tmux/Makefile
··· 1 1 install: 2 - $(LN) tmux/conf ${HOME}/.tmux.conf 2 + $(LN) tmux/config ${HOME}/.tmux.conf 3 3 $(LN) tmux ${HOME}/.tmux 4 4 5 5 clean:
+7 -16
tmux/conf tmux/config
··· 1 1 unbind C-b 2 2 set -g prefix C-q 3 3 4 - set -g status on 5 - set -g status-utf8 on 6 - set -g status-interval 1 7 - set -sg escape-time 0 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' 8 9 9 10 source "$HOME/.tmux/themes/agnoster.tmux" 10 11 11 - setw -g mode-keys vi 12 - 13 - set-window-option -g utf8 on 14 - set-option -g status-utf8 on 15 - 16 - # set -g default-terminal screen-256color 17 - 18 12 set -g mouse-resize-pane on 19 13 set -g mouse-select-pane on 20 14 set -g mouse-select-window on ··· 30 24 bind -n C-l if-shell "$is_vim" "send-keys C-l" "select-pane -R" 31 25 bind -n C-\ if-shell "$is_vim" "send-keys C-\\" "select-pane -l" 32 26 33 - # Bring back clear screen under tmux prefix 34 - bind C-l send-keys 'C-l' 35 - 36 27 # Allow sending prefix to child 37 - bind-key C-q send-prefix 38 28 bind-key j command-prompt -p "Join pane from:" "join-pane -s '%%'" 39 29 bind-key s command-prompt -p "Send pane to:" "join-pane -t '%%'" 40 30 41 - set -g base-index 1 31 + # Initialize TMUX plugin manager 32 + run '~/.tmux/plugins/tpm/tpm' 42 33 43 34 # vim: ft=tmux