always enable true color in nvim, use urxvt again because rxvt-unicode-24bit by spudowiar
This commit is contained in:
parent
1ab5e7fe64
commit
fb70eaae4a
2 changed files with 4 additions and 5 deletions
2
rc.lua
2
rc.lua
|
@ -87,7 +87,7 @@ if exists(wallpaper) then
|
||||||
end
|
end
|
||||||
|
|
||||||
-- This is used later as the default terminal and editor to run.
|
-- This is used later as the default terminal and editor to run.
|
||||||
terminal = 'termite'
|
terminal = 'urxvt'
|
||||||
editor = 'gvim'
|
editor = 'gvim'
|
||||||
editor_cmd = editor
|
editor_cmd = editor
|
||||||
|
|
||||||
|
|
7
shellrc
7
shellrc
|
@ -21,10 +21,6 @@ if [[ -z ${fqdn} ]]; then
|
||||||
export fqdn="$(hostname)"
|
export fqdn="$(hostname)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ${TERM} == "xterm-termite" || -n ${TMUX} ]]; then
|
|
||||||
export NVIM_TUI_ENABLE_TRUE_COLOR=1
|
|
||||||
fi
|
|
||||||
|
|
||||||
newline="
|
newline="
|
||||||
"
|
"
|
||||||
vscripts="${HOME}/vscripts"
|
vscripts="${HOME}/vscripts"
|
||||||
|
@ -37,6 +33,9 @@ dotfiles="${HOME}/vdotfiles"
|
||||||
comp_enabled=true
|
comp_enabled=true
|
||||||
vcs_enabled=true
|
vcs_enabled=true
|
||||||
|
|
||||||
|
# nvim true color
|
||||||
|
export NVIM_TUI_ENABLE_TRUE_COLOR=1
|
||||||
|
|
||||||
export MYSQL_PS1="mysql [\d]> "
|
export MYSQL_PS1="mysql [\d]> "
|
||||||
export SSH_AUTH_SOCK="${HOME}/.ssh/ssh_auth_sock"
|
export SSH_AUTH_SOCK="${HOME}/.ssh/ssh_auth_sock"
|
||||||
export TIME_STYLE='long-iso'
|
export TIME_STYLE='long-iso'
|
||||||
|
|
Loading…
Reference in a new issue