-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.lua
More file actions
60 lines (46 loc) · 1.11 KB
/
options.lua
File metadata and controls
60 lines (46 loc) · 1.11 KB
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
53
54
55
56
57
58
59
60
-- Options
local M = {}
M = {
opt = {
expandtab = true,
shiftwidth = 4,
softtabstop = 4,
tabstop = 4,
cursorline = true,
number = true,
relativenumber = true,
signcolumn = "yes:1",
hlsearch = true,
showmode = true,
spell = true,
spelllang = "en_ca",
splitbelow = true,
splitright = true,
inccommand = "split",
scrolloff = 8,
virtualedit = "block",
foldlevel = 99,
foldlevelstart = 99,
foldnestmax = 10,
-- Tree-sitter folding is set up in `lua/plugins/treesitter.lua`
foldmethod = "indent",
termguicolors = true,
undofile = true,
listchars = { -- special characters
-- eol = "⏎",
-- space = "␣",
tab = ">-",
},
list = true, -- show special characters
-- ignorecase = true,
-- textwidth = 80,
-- colorcolumn = "80,120",
winborder = "rounded",
},
g = {
-- OpenQASM falls back to version 2.0
openqasm_version_fallback = 2.0,
-- openqasm_version_override = 2.0
},
}
return M