13 lines
289 B
Lua
13 lines
289 B
Lua
|
local options = function(local_vim)
|
||
|
local_vim.opt.relativenumber = true
|
||
|
local_vim.opt.whichwrap = "b,s,h,l,<,>,[,]"
|
||
|
local_vim.opt.shiftwidth = 4
|
||
|
local_vim.expandtab = {}
|
||
|
local_vim.smartindent = {}
|
||
|
local_vim.autoindent = {}
|
||
|
|
||
|
return local_vim
|
||
|
end
|
||
|
|
||
|
return options
|