Big change here was tmux status bar and messing with X colors

This commit is contained in:
jond
2018-05-20 08:57:21 -05:00
parent bd4ca982b1
commit 3c959a0fb8
11 changed files with 87 additions and 32 deletions

View File

@@ -14,6 +14,7 @@ alias l='ls -lh'
alias ll='ls -lh' alias ll='ls -lh'
#set -o vi #set -o vi
alias p='ping' alias p='ping'
alias s='sudo'
#golang stuff #golang stuff
export GOPATH=$HOME/gopath export GOPATH=$HOME/gopath
@@ -22,3 +23,5 @@ export PATH=$GOPATH:$GOPATH/bin:$PATH
export EDITOR=/usr/bin/vim export EDITOR=/usr/bin/vim
[ -f ~/.fzf.bash ] && source ~/.fzf.bash [ -f ~/.fzf.bash ] && source ~/.fzf.bash
xrdb -merge /home/jon/.colors/codeschool.dark

View File

@@ -36,3 +36,36 @@ if-shell '[ $(echo "$(tmux -V | cut -d" " -f2) >= 2.1" | bc) -eq 1 ]' \
bind-key Tab last-window bind-key Tab last-window
bind-key BTab previous-window bind-key BTab previous-window
set -g default-terminal "screen-256color"
# Basic status bar colors
set-option -g status-bg default
set-option -g status-fg white
# Left side of status bar
set-option -g status-left-length 40
set-option -g status-left "#[fg=colour18,bg=colour12] #S #[fg=default,bg=default] "
# Window status
set-option -g window-status-format "#[fg=colour18,bg=brightblack] #I #[fg=white,bg=black] #W "
set-option -g window-status-current-format "#[fg=colour18,bg=colour7] #I #[fg=colour18,bg=colour4] #W "
set-option -g window-status-separator " "
set-option -g status-justify left
# Right side of status bar
set-option -g status-right-length 40
set-option -g status-right " #[fg=brightwhite,bg=black] %a, %d %b %H:%M #[fg=colour18,bg=colour4] #(whoami)@#h "
# Pane border
set-option -g pane-border-bg default
set-option -g pane-border-fg brightblack
set-option -g pane-active-border-bg default
set-option -g pane-active-border-fg white
# Pane number indicator
set-option -g display-panes-colour brightblack
set-option -g display-panes-active-colour brightwhite
# Clock mode
set-option -g clock-mode-colour white
set-option -g clock-mode-style 24

Submodule vim/.vim/bundle/Vundle.vim updated: 6437ad6df4...9a38216a1c

Submodule vim/.vim/bundle/calendar.vim updated: 6d6be26b2a...1aee272cc3

Submodule vim/.vim/bundle/jedi-vim updated: 0c6a2b7737...f07ff6a535

Submodule vim/.vim/bundle/lightline-buffer updated: 1c090e0782...128ddaad4a

Submodule vim/.vim/bundle/lightline.vim updated: b19faca129...41fb97e85b

Submodule vim/.vim/bundle/nerdtree updated: 8cd17c1a47...6188c5ea5f

Submodule vim/.vim/bundle/syntastic updated: 5e1b26c172...d17b98cff3

Submodule vim/.vim/bundle/vim-fugitive updated: 913fff1cea...b14434bae0

View File

@@ -1,33 +1,52 @@
*background: #151B1A
*foreground: #8FA388
*cursorColor: #9E6438
*color0: #2E2B38
*color1: #984E66
*color2: #7A8C54
*color3: #9E6438
*color4: #395667
*color5: #9D916B
*color6: #536556
*color7: #828181
*color8: #474159
*color9: #A86D56
*color10: #9FB274
*color11: #B29F5E
*color12: #507A91
*color13: #B89855
*color14: #7E9982
*color15: #BDBDA4
URxvt*scrollBar: false URxvt*scrollBar: false
URxvt.font: xft:xos4 Terminus:size=14:antialias=true URxvt.font: xft:Terminus:size=14:antialias=true
URxvt.boldFont: xft:xos4 Terminus:bold:size=14:antialias=true !URxvt.boldFont: xft:Terminus:bold:size=14:antialias=true
URxvt*transparent: true URxvt*transparent: true
URxvt*shading: 10 URxvt*shading: 10
URxvt*perl-ext-common: default,matcher URxvt*perl-ext-common: default,matcher
URxvt*matcher.button: 1 URxvt*matcher.button: 1
! URxvt*url-launcher: /usr/bin/google-chrome ! URxvt*url-launcher: /usr/bin/google-chrome
URxvt*url-launcher: /home/jon/apps/firefox/firefox ! URxvt*url-launcher: /home/jon/apps/firefox/firefox
URxvt*url-launcher: /usr/bin/firefox
! URxvt.blurRadius: 25 ! URxvt.blurRadius: 25
URxvt*.termName: rxvt-unicode-256color
! special
*.foreground: #c5c8c6
*.background: #1d1f21
*.cursorColor: #c5c8c6
! black
*.color0: #282a2e
*.color8: #373b41
! red
*.color1: #a54242
*.color9: #cc6666
! green
*.color2: #8c9440
*.color10: #b5bd68
! yellow
*.color3: #de935f
*.color11: #f0c674
! blue
*.color4: #5f819d
*.color12: #81a2be
! magenta
*.color5: #85678f
*.color13: #b294bb
! cyan
*.color6: #5e8d87
*.color14: #8abeb7
! white
*.color7: #707880
*.color15: #c5c8c6