this repo has no description
1
fork

Configure Feed

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

Better TMux configuration

+20 -4
+12 -2
fish/functions/work.fish
··· 1 1 function work 2 - set project (basename (command git rev-parse --show-toplevel)) 3 - time -f '%E' -- tmux new -s $project; or time -f '%E' -- tmux attach -t $project 2 + set NAME $argv[1] 3 + 4 + pushd "$HOME/Workspace/$NAME" 5 + 6 + if not tmux has-session -t "$NAME" ^/dev/null 7 + tmux start \;\ 8 + new-session -d -s "$NAME" 9 + end 10 + 11 + tmux attach -t "$NAME" 12 + 13 + popd 4 14 end
+2 -1
nvim/init.vim
··· 55 55 56 56 " Utils 57 57 Plug 'Shougo/vimproc.vim', { 'do': 'make' } 58 + Plug 'dahu/EditorConfig' 58 59 Plug 'jaxbot/github-issues.vim' 59 60 Plug 'junegunn/vim-easy-align' 60 61 Plug 'mattn/webapi-vim' ··· 62 63 Plug 'mjbrownie/swapit' 63 64 Plug 'scrooloose/syntastic' 64 65 Plug 'terryma/vim-multiple-cursors' 66 + Plug 'tpope/vim-obsession' 65 67 Plug 'tpope/vim-repeat' 66 68 Plug 'tpope/vim-unimpaired' 67 - Plug 'dahu/EditorConfig' 68 69 69 70 call plug#end() 70 71 " }}}
+6 -1
tmux/init.tmux
··· 22 22 bind-key j command-prompt -p "Join pane from:" "join-pane -s '%%'" 23 23 bind-key s command-prompt -p "Send pane to:" "join-pane -t '%%'" 24 24 25 + set -g @sidebar-tree-command 'tree -C -I "tmp|vendor/bundle|target|node_modules"' 26 + 25 27 # List of plugins 26 28 set -g @plugin 'tmux-plugins/tpm' 27 29 set -g @plugin 'tmux-plugins/tmux-sensible' 28 30 31 + set -g @plugin 'tmux-plugins/tmux-sessionist' 32 + set -g @plugin 'tmux-plugins/tmux-resurrect' 29 33 set -g @plugin 'tmux-plugins/tmux-yank' 34 + set -g @plugin 'tmux-plugins/tmux-sidebar' 30 35 31 36 # Initialize TMUX plugin manager 32 - run '~/.tmux/plugins/tpm/tpm' 37 + run "$HOME/.tmux/plugins/tpm/tpm" 33 38 34 39 # vim: ft=tmux