initial commit

This commit is contained in:
siduck76 2021-03-07 19:52:30 +05:30
parent 9c1b47cc8b
commit 78152fa48c
11 changed files with 649 additions and 0 deletions
lua/utils

22
lua/utils/lua.lua Normal file
View file

@ -0,0 +1,22 @@
local scopes = { o = vim.o, b = vim.bo, w = vim.wo}
local function opt(scope, key, value)
scopes[scope][key] = value
if scope ~= 'o' then scopes['o'][key] = value end
end
opt('o', 'hidden', true)
opt('o', 'ignorecase', true)
opt('o', 'splitbelow', true)
opt('o', 'splitright', true)
opt('o', 'termguicolors', true)
opt('w', 'number', true)
opt('o', 'numberwidth' , 2)
opt('o' ,'mouse' , "a")
opt('w', 'signcolumn' , "yes")
opt('o' , 'cmdheight' , 1)
opt('o' , 'updatetime' , 250)
opt('o' , 'clipboard' , 'unnamedplus')