Create set.lua

This commit is contained in:
Rawley Fowler 2022-07-24 20:22:53 -06:00 committed by GitHub
parent a9f1e61862
commit 87ddda4021
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
neovim/lua/rf/set.lua Normal file
View file

@ -0,0 +1,11 @@
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