Added M.load

main
Montréal 2026-02-20 13:29:05 +01:00
parent 99a54b7580
commit 3f924a2d98
1 changed files with 7 additions and 0 deletions

View File

@ -1,4 +1,8 @@
-- settings based on: https://github.com/navarasu/onedark.nvim -- settings based on: https://github.com/navarasu/onedark.nvim
local M = {}
function M.load(_)
local vim = vim -- assign global "vim" to prevent a lot of warnings local vim = vim -- assign global "vim" to prevent a lot of warnings
vim.o.termguicolors = true vim.o.termguicolors = true
@ -943,3 +947,6 @@ local lualine_plugin_highlights = {
lualine_c_terminal = { fg = fg_dark, bg = bg_dark }, lualine_c_terminal = { fg = fg_dark, bg = bg_dark },
} }
set_highlight_groups(lualine_plugin_highlights) set_highlight_groups(lualine_plugin_highlights)
end
return M