this repo has no description
1
fork

Configure Feed

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

Remove Powerline and use native tmux configuration

+48 -34
+30 -33
.gitmodules
··· 50 50 [submodule "vim/bundle/latex-box"] 51 51 path = vim/bundle/latex-box 52 52 url = git://github.com/LaTeX-Box-Team/LaTeX-Box.git 53 - [submodule "powerline"] 54 - path = powerline 55 - url = git://github.com/Lokaltog/powerline.git 56 53 [submodule "vim/bundle/loremipsum"] 57 54 path = vim/bundle/loremipsum 58 55 url = git://github.com/vim-scripts/loremipsum.git 59 56 ignore = dirty 60 57 [submodule "vim/bundle/tmux-navigator"] 61 - path = vim/bundle/tmux-navigator 62 - url = git://github.com/christoomey/vim-tmux-navigator.git 58 + path = vim/bundle/tmux-navigator 59 + url = git://github.com/christoomey/vim-tmux-navigator.git 63 60 [submodule "vim/bundle/emmet"] 64 - path = vim/bundle/emmet 65 - url = git://github.com/mattn/emmet-vim.git 61 + path = vim/bundle/emmet 62 + url = git://github.com/mattn/emmet-vim.git 66 63 [submodule "vim/bundle/autoclose"] 67 - path = vim/bundle/autoclose 68 - url = git://github.com/Townk/vim-autoclose.git 64 + path = vim/bundle/autoclose 65 + url = git://github.com/Townk/vim-autoclose.git 69 66 [submodule "vim/bundle/multiple-cursors"] 70 - path = vim/bundle/multiple-cursors 71 - url = git://github.com/terryma/vim-multiple-cursors.git 67 + path = vim/bundle/multiple-cursors 68 + url = git://github.com/terryma/vim-multiple-cursors.git 72 69 [submodule "vim/bundle/snipmate"] 73 - path = vim/bundle/snipmate 74 - url = git://github.com/msanders/snipmate.vim.git 70 + path = vim/bundle/snipmate 71 + url = git://github.com/msanders/snipmate.vim.git 75 72 [submodule "vim/bundle/rbenv"] 76 - path = vim/bundle/rbenv 77 - url = git://github.com/tpope/vim-rbenv.git 73 + path = vim/bundle/rbenv 74 + url = git://github.com/tpope/vim-rbenv.git 78 75 [submodule "vim/bundle/supertab"] 79 - path = vim/bundle/supertab 80 - url = git://github.com/ervandew/supertab.git 76 + path = vim/bundle/supertab 77 + url = git://github.com/ervandew/supertab.git 81 78 [submodule "vim/bundle/ctrlp"] 82 - path = vim/bundle/ctrlp 83 - url = git://github.com/kien/ctrlp.vim.git 79 + path = vim/bundle/ctrlp 80 + url = git://github.com/kien/ctrlp.vim.git 84 81 [submodule "vim/bundle/nerdcommenter"] 85 - path = vim/bundle/nerdcommenter 86 - url = git://github.com/scrooloose/nerdcommenter.git 82 + path = vim/bundle/nerdcommenter 83 + url = git://github.com/scrooloose/nerdcommenter.git 87 84 [submodule "vim/bundle/tagbar"] 88 - path = vim/bundle/tagbar 89 - url = git://github.com/majutsushi/tagbar.git 85 + path = vim/bundle/tagbar 86 + url = git://github.com/majutsushi/tagbar.git 90 87 [submodule "vim/bundle/bufexplorer"] 91 - path = vim/bundle/bufexplorer 92 - url = git://github.com/vim-scripts/bufexplorer.zip.git 88 + path = vim/bundle/bufexplorer 89 + url = git://github.com/vim-scripts/bufexplorer.zip.git 93 90 [submodule "vim/bundle/netrw"] 94 - path = vim/bundle/netrw 95 - url = git://github.com/vim-scripts/netrw.vim.git 91 + path = vim/bundle/netrw 92 + url = git://github.com/vim-scripts/netrw.vim.git 96 93 [submodule "vim/bundle/repeat"] 97 - path = vim/bundle/repeat 98 - url = git://github.com/tpope/vim-repeat.git 94 + path = vim/bundle/repeat 95 + url = git://github.com/tpope/vim-repeat.git 99 96 [submodule "vim/bundle/airline"] 100 - path = vim/bundle/airline 101 - url = git://github.com/bling/vim-airline.git 97 + path = vim/bundle/airline 98 + url = git://github.com/bling/vim-airline.git 102 99 [submodule "vim/bundle/bufferline"] 103 - path = vim/bundle/bufferline 104 - url = git://github.com/bling/vim-bufferline.git 100 + path = vim/bundle/bufferline 101 + url = git://github.com/bling/vim-bufferline.git
+18 -1
tmux.conf
··· 1 1 unbind C-b 2 2 set -g prefix C-a 3 3 4 - source '/home/hauleth/dotfiles/powerline/powerline/bindings/tmux/powerline.conf' 4 + set -g status on 5 + set -g status-utf8 on 6 + set -g status-interval 2 7 + set -g status-fg colour231 8 + set -g status-bg colour234 9 + set -g status-left-length 20 10 + set -g status-left '#[fg=colour16,bg=colour254,bold] #S #[fg=colour254,bg=colour234,nobold]' 11 + set -g status-right '#[fg=colour236,bg=default,nobold,noitalics,nounderscore] #[fg=colour247,bg=colour236,nobold,noitalics,nounderscore] ⌚ #(date +"%D")#[fg=colour241,bg=colour236,nobold,noitalics,nounderscore] #[fg=colour252,bg=colour236,bold,noitalics,nounderscore] ⌚ #(date +"%H:%M")#[fg=colour252,bg=colour236,nobold,noitalics,nounderscore] #[fg=colour16,bg=colour252,bold,noitalics,nounderscore] #(uname -n) ' 12 + set -g status-right-length 150 13 + set -g window-status-format "#[fg=colour244,bg=colour234]#I #[fg=colour240] #[default]#W " 14 + set -g window-status-current-format "#[fg=colour234,bg=colour31]#[fg=colour117,bg=colour31] #I  #[fg=colour231,bold]#W #[fg=colour31,bg=colour234,nobold]" 15 + set-window-option -g window-status-fg colour249 16 + set-window-option -g window-status-activity-attr none 17 + set-window-option -g window-status-bell-attr none 18 + set-window-option -g window-status-activity-fg yellow 19 + set-window-option -g window-status-bell-fg red 5 20 6 21 setw -g mode-keys vi 7 22 ··· 26 41 27 42 # Bring back clear screen under tmux prefix 28 43 bind C-l send-keys 'C-l' 44 + 45 + # vim: ft=tmux