neovim-confs/lua/custom/init.lua

12 lines
269 B
Lua
Raw Normal View History

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"
opt.clipboard = "" -- dont just use the system clipboard
2024-01-19 23:44:07 +01:00
opt.wrap = false
opt.breakindent = false