Skip to content

Commit 5343f2f

Browse files
committed
feat #10 - italics support
1 parent 534b32c commit 5343f2f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lua/monokai.lua

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,7 @@ M.load_syntax = function(palette)
279279
},
280280
Function = {
281281
fg = palette.green,
282+
style = 'italic',
282283
},
283284
Statement = {
284285
fg = palette.pink,
@@ -291,6 +292,7 @@ M.load_syntax = function(palette)
291292
},
292293
Keyword = {
293294
fg = palette.pink,
295+
style = 'italic',
294296
},
295297
PreProc = {
296298
fg = palette.green,
@@ -318,6 +320,7 @@ M.load_syntax = function(palette)
318320
},
319321
SpecialComment = {
320322
fg = palette.grey,
323+
style = 'italic',
321324
},
322325
Tag = {
323326
fg = palette.orange,
@@ -327,6 +330,7 @@ M.load_syntax = function(palette)
327330
},
328331
Comment = {
329332
fg = palette.base6,
333+
style = 'italic',
330334
},
331335
Underlined = {
332336
fg = palette.none,
@@ -423,6 +427,7 @@ M.load_plugin_syntax = function(palette)
423427
},
424428
TSComment = {
425429
fg = palette.base6,
430+
style = 'italic',
426431
},
427432
TSConstant = {
428433
fg = palette.aqua,
@@ -441,18 +446,22 @@ M.load_plugin_syntax = function(palette)
441446
},
442447
TSFunction = {
443448
fg = palette.green,
449+
style = 'italic',
444450
},
445451
TSFuncBuiltin = {
446452
fg = palette.aqua,
447453
},
448454
TSFuncMacro = {
449455
fg = palette.green,
456+
style = 'italic',
450457
},
451458
TSKeyword = {
452459
fg = palette.pink,
460+
style = 'italic',
453461
},
454462
TSKeywordFunction = {
455463
fg = palette.pink,
464+
style = 'italic',
456465
},
457466
TSKeywordOperator = {
458467
fg = palette.pink,

0 commit comments

Comments
 (0)