Maybe actually fix colors?
This commit is contained in:
parent
3c11353256
commit
da496b7f0c
|
@ -90,10 +90,6 @@ if has('autocmd')
|
||||||
augroup END
|
augroup END
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" color scheme
|
|
||||||
let base16colorspace=16
|
|
||||||
let &t_Co=16
|
|
||||||
set background=dark
|
|
||||||
syntax enable
|
syntax enable
|
||||||
colorscheme base16-donokai
|
colorscheme base16-donokai
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
!/usr/bin/env bash
|
||||||
|
|
||||||
export XDG_CONFIG_HOME="$HOME/.config"
|
export XDG_CONFIG_HOME="$HOME/.config"
|
||||||
export DOTFILES_PATH="$XDG_CONFIG_HOME/dotfiles"
|
export DOTFILES_PATH="$XDG_CONFIG_HOME/dotfiles"
|
||||||
|
@ -7,7 +7,7 @@ export DOTFILES_PATH="$XDG_CONFIG_HOME/dotfiles"
|
||||||
|
|
||||||
[[ ! $- == *i* ]] && return # stop parsing on a non-interactive shell
|
[[ ! $- == *i* ]] && return # stop parsing on a non-interactive shell
|
||||||
|
|
||||||
. "$DOTFILES_PATH/apps/shell/bash/aliases"
|
. "$DOTFILES_PATH/apps/shell/bash/aliases.bash"
|
||||||
. "$DOTFILES_PATH/apps/shell/bash/autocompletions"
|
. "$DOTFILES_PATH/apps/shell/bash/autocompletions"
|
||||||
. "$DOTFILES_PATH/apps/shell/bash/prompt"
|
. "$DOTFILES_PATH/apps/shell/bash/prompt"
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ set -U XDG_CONFIG_HOME $HOME/.config
|
||||||
set -U DOTFILES_PATH $XDG_CONFIG_HOME/dotfiles
|
set -U DOTFILES_PATH $XDG_CONFIG_HOME/dotfiles
|
||||||
set -U ENV_PATH $HOME/.env
|
set -U ENV_PATH $HOME/.env
|
||||||
|
|
||||||
$DOTFILES_PATH/bin/lib/colors/shell
|
# $DOTFILES_PATH/bin/lib/colors/shell
|
||||||
$DOTFILES_PATH/bin/prelude
|
$DOTFILES_PATH/bin/prelude
|
||||||
|
|
||||||
function source_if_exists
|
function source_if_exists
|
||||||
|
|
|
@ -8,10 +8,10 @@ bind-key T source-file "$HOME/.tmux.conf" \; display-message "source-file done"
|
||||||
unbind r
|
unbind r
|
||||||
bind r source-file "$HOME/.tmux.conf"
|
bind r source-file "$HOME/.tmux.conf"
|
||||||
|
|
||||||
set -as terminal-overrides ',xterm*:smxx=\E[9m'
|
# set -as terminal-overrides ',xterm*:smxx=\E[9m'
|
||||||
|
set -g default-terminal "screen-256color"
|
||||||
|
|
||||||
# sane defaults
|
# sane defaults
|
||||||
set -g default-terminal "tmux"
|
|
||||||
set -g mouse on
|
set -g mouse on
|
||||||
|
|
||||||
# honestly not exactly sure?
|
# honestly not exactly sure?
|
||||||
|
|
Reference in a new issue