aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/dark/buffer.lua
blob: 3253969fd1132af627cb777149107e6206002d3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- Copyright 2007-2008 Mitchell mitchell<att>caladbolg.net. See LICENSE.
-- Dark editor theme for Textadept.

local textadept, buffer = textadept, buffer

-- folding
buffer.property['fold'] = '1'
buffer.property['fold.by.indentation'] = '1'

-- tabs and indentation
buffer.tab_width = 2
buffer.use_tabs = false
buffer.indent = 2
buffer.tab_indents = true
buffer.back_space_un_indents = true
buffer.indentation_guides = 1

-- various
buffer.eol_mode = textadept.constants.SC_EOL_LF
buffer.auto_c_choose_single = true