From fb70eaae4a368dad6f0301125d1284ae9370a5f0 Mon Sep 17 00:00:00 2001 From: Von Random Date: Fri, 29 Apr 2016 18:51:20 +0300 Subject: [PATCH] always enable true color in nvim, use urxvt again because rxvt-unicode-24bit by spudowiar --- rc.lua | 2 +- shellrc | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/rc.lua b/rc.lua index 40b8491..1a500d8 100644 --- a/rc.lua +++ b/rc.lua @@ -87,7 +87,7 @@ if exists(wallpaper) then end -- This is used later as the default terminal and editor to run. -terminal = 'termite' +terminal = 'urxvt' editor = 'gvim' editor_cmd = editor diff --git a/shellrc b/shellrc index 31e0882..2dd192e 100644 --- a/shellrc +++ b/shellrc @@ -21,10 +21,6 @@ if [[ -z ${fqdn} ]]; then export fqdn="$(hostname)" fi -if [[ ${TERM} == "xterm-termite" || -n ${TMUX} ]]; then - export NVIM_TUI_ENABLE_TRUE_COLOR=1 -fi - newline=" " vscripts="${HOME}/vscripts" @@ -37,6 +33,9 @@ dotfiles="${HOME}/vdotfiles" comp_enabled=true vcs_enabled=true +# nvim true color +export NVIM_TUI_ENABLE_TRUE_COLOR=1 + export MYSQL_PS1="mysql [\d]> " export SSH_AUTH_SOCK="${HOME}/.ssh/ssh_auth_sock" export TIME_STYLE='long-iso'