aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-04-02 00:19:44 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-04-02 00:19:44 -0400
commit00153ab1c0f7307a8589c7d0cc0a3908cb7f0c34 (patch)
tree040bf8d62d3f66d28fbbcaf43fb41a9179d74db2 /themes
parent44a698f72be35911264dbece824ee6cb32daf92a (diff)
No need for '!' in front of font faces in GTK anymore.
Diffstat (limited to 'themes')
-rw-r--r--themes/dark/lexer.lua6
-rw-r--r--themes/light/lexer.lua6
2 files changed, 6 insertions, 6 deletions
diff --git a/themes/dark/lexer.lua b/themes/dark/lexer.lua
index daf46382..4824fb8c 100644
--- a/themes/dark/lexer.lua
+++ b/themes/dark/lexer.lua
@@ -78,12 +78,12 @@ l.style_embedded = l.style_tag..{back = l.colors.light_black}
l.style_identifier = l.style_nothing
-- Default styles.
-local font_face = '!Bitstream Vera Sans Mono'
+local font_face = 'Bitstream Vera Sans Mono'
local font_size = 10
if WIN32 then
- font_face = '!Courier New'
+ font_face = 'Courier New'
elseif OSX then
- font_face = '!Monaco'
+ font_face = 'Monaco'
font_size = 12
end
l.style_default = style{
diff --git a/themes/light/lexer.lua b/themes/light/lexer.lua
index ae7890b1..5865e363 100644
--- a/themes/light/lexer.lua
+++ b/themes/light/lexer.lua
@@ -77,12 +77,12 @@ l.style_embedded = l.style_tag..{back = l.colors.dark_white}
l.style_identifier = l.style_nothing
-- Default styles.
-local font_face = '!Bitstream Vera Sans Mono'
+local font_face = 'Bitstream Vera Sans Mono'
local font_size = 10
if WIN32 then
- font_face = '!Courier New'
+ font_face = 'Courier New'
elseif OSX then
- font_face = '!Monaco'
+ font_face = 'Monaco'
font_size = 12
end
l.style_default = style{