Colors fixed?

This commit is contained in:
Daniel Flanagan 2020-01-20 12:32:23 -06:00
parent f2a5060e7d
commit 3c11353256
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
6 changed files with 8 additions and 9 deletions

View File

@ -91,8 +91,8 @@ if has('autocmd')
endif
" color scheme
let base16colorspace=256
let &t_Co=256
let base16colorspace=16
let &t_Co=16
set background=dark
syntax enable
colorscheme base16-donokai

View File

@ -70,7 +70,6 @@ alias .........="cd ../../../../../../../.."
# tmux aliases
# TODO: see if this can be worked around?
alias tmux='TERM=screen-256color-bce tmux' # syntax higlighting for vim in tmux
alias tmnew="tmux new -s"
alias tmls="tmux list-sessions"
alias tmatt="tmux attach -t"

View File

@ -76,7 +76,6 @@ alias ......... "cd ../../../../../../../.."
# tmux aliases
# TODO: see if this can be worked around?
alias tmux 'env TERM=screen-256color-bce tmux' # syntax higlighting for vim in tmux
alias tmnew "tmux new -s"
alias tmls "tmux list-sessions"
alias tmatt "tmux attach -t"

View File

@ -11,7 +11,7 @@ bind r source-file "$HOME/.tmux.conf"
set -as terminal-overrides ',xterm*:smxx=\E[9m'
# sane defaults
set -g default-terminal "tmux-256color"
set -g default-terminal "tmux"
set -g mouse on
# honestly not exactly sure?
@ -19,7 +19,7 @@ set -g mouse on
set -g escape-time 0
# show window activity
# TODO: this needs to be properly setup
# TODO: this needs to be properly setup - presumably with tmux-session-list
setw -g monitor-activity on
setw -g visual-bell on
setw -g bell-action other
@ -46,7 +46,8 @@ bind-key j switch-client -p
bind-key h switch-client -p
bind-key k switch-client -n
bind-key l switch-client -n
bind s run-shell "tmux new-window tmuxswitcher"
# bind s run-shell "tmux new-window sh -c '$DOTFILES_PATH/bin/tmuxswitcher'"
bind s run-shell "tmux new-window 'sh -c ~/.config/dotfiles/bin/tmuxswitcher'"
# reset the working directory of the current session
bind-key P attach-session -t . -c '#{pane_current_path}' \; display-message 'Reset session dir to #{pane_current_path}'

2
bin/n
View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/usr/bin/env sh
fn="${1}"; shift
N "$(date +%Y-%m-%d)_${fn}" $*

2
bin/nf
View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/usr/bin/env sh
SUBDIR="${2:-}"
mkdir -p "$NOTES_PATH/$SUBDIR"