neovim-confs/lua/custom/init.lua

16 lines
349 B
Lua

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"
opt.clipboard = "" -- don't just use the system clipboard
opt.wrap = false
opt.breakindent = false
opt.spell = true
opt.list = true
opt.timeout = true
opt.timeoutlen = 300 -- ms