2024-01-19 22:34:37 +01:00
|
|
|
local opt = vim.opt
|
|
|
|
local g = vim.g
|
|
|
|
g.maplocalleader = ";"
|
|
|
|
opt.foldmethod = "indent"
|
|
|
|
opt.foldnestmax = 10
|
|
|
|
opt.foldlevel = 4
|
|
|
|
opt.signcolumn = "yes"
|
|
|
|
opt.spelllang = "en,de"
|
2024-01-20 01:03:01 +01:00
|
|
|
opt.clipboard = "" -- don't just use the system clipboard
|
2024-01-19 23:44:07 +01:00
|
|
|
opt.wrap = false
|
|
|
|
opt.breakindent = false
|
2024-01-20 01:03:01 +01:00
|
|
|
opt.spell = true
|
|
|
|
opt.list = true
|
|
|
|
opt.timeout = true
|
|
|
|
opt.timeoutlen = 300 -- ms
|