You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
209 B
Lua

local set = vim.opt
set.nu = true
set.tabstop = 2
set.shiftwidth = 2
set.hlsearch = false
set.incsearch = true
set.smartindent = true
set.wrap = false
-- Lower update time the better (ms)
set.updatetime = 50