back to urxvt, termite is nice and all, but without full tmux support of TrueColor it is kinda pointless
This commit is contained in:
parent
57a88694d8
commit
e72150e2d5
2 changed files with 14 additions and 12 deletions
6
rc.lua
6
rc.lua
|
@ -87,9 +87,9 @@ 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 = os.getenv('EDITOR') or 'vim'
|
editor = 'gvim'
|
||||||
editor_cmd = terminal .. ' -e ' .. editor
|
editor_cmd = editor
|
||||||
|
|
||||||
-- Default modkey.
|
-- Default modkey.
|
||||||
-- Usually, Mod4 is the key with a logo between Control and Alt.
|
-- Usually, Mod4 is the key with a logo between Control and Alt.
|
||||||
|
|
20
xresources
20
xresources
|
@ -17,12 +17,14 @@ URxvt.boldFont: terminus_bold
|
||||||
URxvt.italicFont: terminus_bold
|
URxvt.italicFont: terminus_bold
|
||||||
URxvt.boldItalicFont: terminus_bold
|
URxvt.boldItalicFont: terminus_bold
|
||||||
URxvt.saveLines: 1000
|
URxvt.saveLines: 1000
|
||||||
|
URxvt.cursorUnderline: true
|
||||||
URxvt.iso14755: false
|
URxvt.iso14755: false
|
||||||
URxvt.visualBell: false
|
URxvt.visualBell: false
|
||||||
URxvt.urgentOnBell: true
|
URxvt.urgentOnBell: true
|
||||||
URxvt.termName: rxvt-unicode-256color
|
URxvt.termName: rxvt-unicode-256color
|
||||||
URxvt.internalBorder: 0
|
URxvt.internalBorder: 0
|
||||||
URxvt.fading: 5
|
URxvt.fading: 5
|
||||||
|
URxvt.depth: 32
|
||||||
|
|
||||||
! urxvt perl extensions
|
! urxvt perl extensions
|
||||||
URxvt.perl-ext-common: default,matcher,clipboard
|
URxvt.perl-ext-common: default,matcher,clipboard
|
||||||
|
@ -32,16 +34,16 @@ URxvt.keysym.C-C: perl:clipboard:copy
|
||||||
URxvt.keysym.C-V: perl:clipboard:paste
|
URxvt.keysym.C-V: perl:clipboard:paste
|
||||||
! }}}
|
! }}}
|
||||||
! {{{ urxvt colors
|
! {{{ urxvt colors
|
||||||
! alternative solarized light
|
! solarized light
|
||||||
!URxvt.foreground: #839496
|
!URxvt.foreground: #657b83
|
||||||
!URxvt.background: [80]#00141A
|
!URxvt.background: #fdf6e3
|
||||||
!URxvt.cursorColor: #fdf6e3
|
!URxvt.cursorColor: #002b36
|
||||||
!URxvt.colorBD: #fdf6e3
|
!URxvt.colorBD: #002b36
|
||||||
|
|
||||||
URxvt.foreground: #657b83
|
URxvt.foreground: #839496
|
||||||
URxvt.background: #fdf6e3
|
URxvt.background: [80]#00141A
|
||||||
URxvt.cursorColor: #002b36
|
URxvt.cursorColor: #fdf6e3
|
||||||
URxvt.colorBD: #002b36
|
URxvt.colorBD: #fdf6e3
|
||||||
|
|
||||||
URxvt.color0: #073642
|
URxvt.color0: #073642
|
||||||
URxvt.color1: #dc322f
|
URxvt.color1: #dc322f
|
||||||
|
|
Loading…
Reference in a new issue