Compare commits

...

2 commits

Author SHA1 Message Date
298af10639 vis: Mejorar color de selección 2022-05-09 15:58:48 -03:00
6d2feb454c Borrar themer 2022-05-09 15:58:15 -03:00
2 changed files with 2 additions and 13 deletions

View file

@ -11,6 +11,7 @@ local surface = '#fffaf3'
local overlay = '#f2e9e1'
local highlight_med = '#dfdad9'
local highlight_high = '#cecacd'
local lexers = vis.lexers
@ -38,7 +39,7 @@ lexers.STYLE_IDENTIFIER = 'fore:'..text
lexers.STYLE_LINENUMBER = 'fore:'..subtle
lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER
lexers.STYLE_CURSOR = 'back:'..muted
lexers.STYLE_CURSOR = 'back:'..highlight_high
lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:'..subtle
lexers.STYLE_CURSOR_LINE = 'underlined'
lexers.STYLE_COLOR_COLUMN = 'back:'..highlight_med

View file

@ -1,12 +0,0 @@
#!/bin/sh
set -ex
if test -n "$1"; then
. ~/.config/themer/themes/"$1".sh
~/.config/themer/fuzzel.sh
~/.config/themer/lock.sh
~/.config/themer/gtk.sh
else
echo "No theme specified"
exit 1
fi