blob: 293aa313b2c53f3a9219b376ac18b26f0eb95303 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
local options = {
completeopt = { "menuone", "noselect" },
tabstop = 4,
shiftwidth = 2,
scrolloff = 5,
number = true,
relativenumber = true,
wrap = false,
cursorline = true,
numberwidth = 4,
undofile = true,
}
for k, v in pairs(options) do
vim.opt[k] = v
end
vim.cmd [[set matchpairs+=<:>]]
|