This repository has been archived on 2022-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/home/.config/nvim/lua/themes/onedark/init.lua

11 lines
175 B
Lua

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