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
|
||||
|
||||
-- This is used later as the default terminal and editor to run.
|
||||
terminal = 'termite'
|
||||
editor = os.getenv('EDITOR') or 'vim'
|
||||
editor_cmd = terminal .. ' -e ' .. editor
|
||||
terminal = 'urxvt'
|
||||
editor = 'gvim'
|
||||
editor_cmd = editor
|
||||
|
||||
-- Default modkey.
|
||||
-- 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.boldItalicFont: terminus_bold
|
||||
URxvt.saveLines: 1000
|
||||
URxvt.cursorUnderline: true
|
||||
URxvt.iso14755: false
|
||||
URxvt.visualBell: false
|
||||
URxvt.urgentOnBell: true
|
||||
URxvt.termName: rxvt-unicode-256color
|
||||
URxvt.internalBorder: 0
|
||||
URxvt.fading: 5
|
||||
URxvt.depth: 32
|
||||
|
||||
! urxvt perl extensions
|
||||
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 colors
|
||||
! alternative solarized light
|
||||
!URxvt.foreground: #839496
|
||||
!URxvt.background: [80]#00141A
|
||||
!URxvt.cursorColor: #fdf6e3
|
||||
!URxvt.colorBD: #fdf6e3
|
||||
! solarized light
|
||||
!URxvt.foreground: #657b83
|
||||
!URxvt.background: #fdf6e3
|
||||
!URxvt.cursorColor: #002b36
|
||||
!URxvt.colorBD: #002b36
|
||||
|
||||
URxvt.foreground: #657b83
|
||||
URxvt.background: #fdf6e3
|
||||
URxvt.cursorColor: #002b36
|
||||
URxvt.colorBD: #002b36
|
||||
URxvt.foreground: #839496
|
||||
URxvt.background: [80]#00141A
|
||||
URxvt.cursorColor: #fdf6e3
|
||||
URxvt.colorBD: #fdf6e3
|
||||
|
||||
URxvt.color0: #073642
|
||||
URxvt.color1: #dc322f
|
||||
|
|
Loading…
Reference in a new issue