clean up
This commit is contained in:
parent
3a244429d5
commit
78cefbb297
14 changed files with 576 additions and 552 deletions
|
@ -1,36 +1,37 @@
|
|||
local scopes = { o = vim.o, b = vim.bo, w = vim.wo}
|
||||
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
|
||||
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", "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')
|
||||
opt("o", "mouse", "a")
|
||||
|
||||
opt("w", "signcolumn", "yes")
|
||||
opt("o", "cmdheight", 1)
|
||||
opt("o", "updatetime", 250)
|
||||
opt("o", "clipboard", "unnamedplus")
|
||||
|
||||
local M = {}
|
||||
|
||||
function M.is_buffer_empty()
|
||||
-- Check whether the current buffer is empty
|
||||
return vim.fn.empty(vim.fn.expand('%:t')) == 1
|
||||
-- Check whether the current buffer is empty
|
||||
return vim.fn.empty(vim.fn.expand("%:t")) == 1
|
||||
end
|
||||
|
||||
function M.has_width_gt(cols)
|
||||
-- Check if the windows width is greater than a given number of columns
|
||||
return vim.fn.winwidth(0) / 2 > cols
|
||||
-- Check if the windows width is greater than a given number of columns
|
||||
return vim.fn.winwidth(0) / 2 > cols
|
||||
end
|
||||
|
||||
return M
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue