make my own auto save the auto-save plugin is being weird

This commit is contained in:
RingOfStorms (Josh) 2024-05-13 10:31:24 -05:00
parent 2063357974
commit 9bce2b0d42
5 changed files with 33 additions and 27 deletions

View file

@ -106,6 +106,10 @@ function M.table_contains(table, element)
return false
end
function M.table_not_contains(table, element)
return not M.table_contains(table, element)
end
-- From https://github.com/lukas-reineke/onedark.nvim/blob/master/lua/onedark.lua
function M.highlight(group, options)
local guifg = options.fg or "NONE"