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.

15 lines
275 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
set.encoding = 'utf-8'
set.guifont = 'Iosevka Nerd Font Mono 14'
-- Lower update time the better (ms)
set.updatetime = 50