FollieHiyuki-dotfiles/home/.config/nvim/lua/themes/onedark/init.lua

11 lines
175 B
Lua
Raw Normal View History

local M = {}
local c = require('themes.onedark.colors')
local hi = require('util').highlight
function M.highlight_editor()
hi('ModeMsg', c.fg, '', '', '')
end
return M