summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tmux.conf35
-rwxr-xr-xvimrc5
-rwxr-xr-xzshrc4
3 files changed, 22 insertions, 22 deletions
diff --git a/tmux.conf b/tmux.conf
index 4ff85d4..63198e0 100644
--- a/tmux.conf
+++ b/tmux.conf
@@ -6,39 +6,40 @@ set-window-option -g mode-keys vi
set -g default-terminal "screen-256color"
+## no status bar
+set -g status off
+bind-key b set-option -g status
+
## supposed to help neovim
set -g escape-time 10
-## set status bar
-set -g status-bg "#373b41"
-set -g status-fg "#81a2be"
-
-## highlight active window
-setw -g window-status-current-bg "#282a2e"
-setw -g window-status-current-fg "#b294bb"
-
-## highlight activity in status bar
-setw -g window-status-activity-fg "#c5c8c6"
-setw -g window-status-activity-bg "#1d1f21"
+## colors
+set -g pane-border-fg black
+set -g pane-active-border-fg blue
## scrolling
## NOPE
-#set -g mode-mouse on
+set -g mode-mouse off
-## pane border and colors
+## color customization
set -g pane-active-border-bg default
set -g pane-active-border-fg "#373b41"
set -g pane-border-bg default
set -g pane-border-fg "#373b41"
-set -g clock-mode-colour "#81a2be"
+set -g status-fg white
+set -g status-bg "#3333cc"
+set -g status-right ''
+set-option -g status-position top
+
+set -g clock-mode-colour "#81a2ae"
set -g clock-mode-style 24
set -g message-bg "#8abeb7"
set -g message-fg "#000000"
-set -g message-command-bg "#8abeb7"
-set -g message-command-fg "#000000"
-
set -g mode-bg "#8abeb7"
set -g mode-fg "#000000"
+
+new-session -A -s default
+set -t default status on
diff --git a/vimrc b/vimrc
index 9e03cf2..32e6fc5 100755
--- a/vimrc
+++ b/vimrc
@@ -75,11 +75,6 @@ set guioptions-=M
set guioptions-=T
set guioptions-=r
set guioptions-=L
-if &t_Co > 255 || has('gui_running')
- set background=dark
- let base16colorspace=256
- colorscheme base16-tomorrow
-endif
set colorcolumn=81
diff --git a/zshrc b/zshrc
index cbf6bdc..6eef91c 100755
--- a/zshrc
+++ b/zshrc
@@ -79,3 +79,7 @@ function get-parent-dir() {
}
zle -N get-parent-dir
bindkey "^[u" get-parent-dir
+
+fpath=($HOME/.zsh-functions $fpath)
+autoload -Uz compinit
+compinit