-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.lua
52 lines (41 loc) · 997 Bytes
/
options.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
-- Options
local M = {}
M = {
opt = {
expandtab = true,
tabstop = 4,
softtabstop = 4,
shiftwidth = 4,
number = true,
relativenumber = true,
cursorline = true,
hlsearch = true,
showmode = true,
spell = true,
splitbelow = true,
splitright = true,
inccommand = "split",
virtualedit = "block",
scrolloff = 8,
foldlevelstart = 99,
-- foldmethod is set in "lua/core/autocmds.lua" (see Folding)
termguicolors = true,
undofile = true,
shell = "bash --login",
listchars = { -- special characters
-- eol = "⏎",
-- space = "␣",
tab = ">-",
},
list = true, -- show special characters
-- ignorecase = true,
-- textwidth = 80,
-- colorcolumn = "80,120",
},
g = {
-- OpenQASM falls back to version 2.0
openqasm_version_fallback = 2.0,
-- openqasm_version_override = 2.0
},
}
return M