my-nvim-setup/lua/misc-utils.lua

45 lines
998 B
Lua
Raw Normal View History

2021-03-13 06:53:02 +05:30
local scopes = {o = vim.o, b = vim.bo, w = vim.wo}
2021-03-07 19:52:30 +05:30
local function opt(scope, key, value)
2021-03-13 06:53:02 +05:30
scopes[scope][key] = value
if scope ~= "o" then
scopes["o"][key] = value
end
2021-03-07 19:52:30 +05:30
end
2021-03-13 06:53:02 +05:30
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)
2021-04-08 07:38:29 +05:30
opt("w", "cul", true)
2021-03-07 19:52:30 +05:30
2021-03-13 06:53:02 +05:30
opt("o", "mouse", "a")
2021-03-07 19:52:30 +05:30
2021-03-13 06:53:02 +05:30
opt("w", "signcolumn", "yes")
opt("o", "cmdheight", 1)
2021-03-13 16:21:52 +05:30
2021-04-08 07:38:29 +05:30
opt("o", "updatetime", 250) -- update interval for gitsigns
2021-03-13 06:53:02 +05:30
opt("o", "clipboard", "unnamedplus")
2021-05-12 10:23:35 -07:00
opt("o", "timeoutlen", 500)
2021-03-13 16:21:52 +05:30
-- for indenline
2021-04-08 07:38:29 +05:30
opt("b", "expandtab", true)
opt("b", "shiftwidth", 2)
2021-03-08 10:54:53 +05:30
local M = {}
function M.is_buffer_empty()
2021-03-13 06:53:02 +05:30
-- Check whether the current buffer is empty
return vim.fn.empty(vim.fn.expand("%:t")) == 1
2021-03-08 10:54:53 +05:30
end
function M.has_width_gt(cols)
2021-03-13 06:53:02 +05:30
-- Check if the windows width is greater than a given number of columns
return vim.fn.winwidth(0) / 2 > cols
2021-03-08 10:54:53 +05:30
end
return M