Create set.lua
This commit is contained in:
parent
a9f1e61862
commit
87ddda4021
1 changed files with 11 additions and 0 deletions
11
neovim/lua/rf/set.lua
Normal file
11
neovim/lua/rf/set.lua
Normal 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
|
Loading…
Reference in a new issue