diff options
Diffstat (limited to 'themes')
-rwxr-xr-x | themes/dark/buffer.lua | 1 | ||||
-rwxr-xr-x | themes/light/buffer.lua | 1 | ||||
-rwxr-xr-x | themes/scite/buffer.lua | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/themes/dark/buffer.lua b/themes/dark/buffer.lua index e4fee499..70d80751 100755 --- a/themes/dark/buffer.lua +++ b/themes/dark/buffer.lua @@ -6,6 +6,7 @@ local buffer = buffer -- Folding. buffer.property['fold'] = '1' buffer.property['fold.by.indentation'] = '1' +buffer.property['fold.line.comments'] = '0' -- Tabs and Indentation. buffer.tab_width = 2 diff --git a/themes/light/buffer.lua b/themes/light/buffer.lua index 29ed26d2..6d4a311a 100755 --- a/themes/light/buffer.lua +++ b/themes/light/buffer.lua @@ -6,6 +6,7 @@ local buffer = buffer -- Folding. buffer.property['fold'] = '1' buffer.property['fold.by.indentation'] = '1' +buffer.property['fold.line.comments'] = '0' -- Tabs and Indentation. buffer.tab_width = 2 diff --git a/themes/scite/buffer.lua b/themes/scite/buffer.lua index bfc13b06..d6c5ba5d 100755 --- a/themes/scite/buffer.lua +++ b/themes/scite/buffer.lua @@ -6,6 +6,7 @@ local buffer = buffer -- Folding. buffer.property['fold'] = '1' buffer.property['fold.by.indentation'] = '1' +buffer.property['fold.line.comments'] = '0' -- Tabs and Indentation. buffer.tab_width = 2 |