This commit is contained in:
Scott Graves 2022-08-01 11:34:33 -05:00
parent a90b7e4e49
commit f9e6de6c11

View File

@ -1,5 +1,7 @@
local M = {} local M = {}
M.is_gui = vim.g.GuiLoaded == 1 or vim.g.neovide M.is_gui = function()
return vim.g.GuiLoaded == 1 or vim.g.neovide
end
return M return M