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
|
vim.cmd "set undofile"
-- vim.opt.isfname:append("@-@")
vim.g.mapleader = ' '
local options = {
nu = true,
relativenumber = true,
tabstop = 4,
softtabstop = 4,
shiftwidth = 4,
expandtab = true,
smartindent = false,
autoindent = true,
wrap = true,
hlsearch = false,
incsearch = true,
scrolloff = 8,
signcolumn = "no",
cursorline = true,
cursorlineopt = "number",
ignorecase = true,
smartcase = true,
showmode = false,
}
for k, v in pairs(options) do
vim.opt[k] = v
end
|