mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2025-01-09 06:54:00 -05:00
11 lines
182 B
Lua
11 lines
182 B
Lua
|
local M = {}
|
||
|
|
||
|
local c = require('themes.onedark.colors')
|
||
|
local hi = require('themes.util').highlight
|
||
|
|
||
|
function M.highlight_editor()
|
||
|
hi('ModeMsg', c.fg, '', '', '')
|
||
|
end
|
||
|
|
||
|
return M
|