Files
NeovimConfig/lua/config/theme.lua

12 lines
256 B
Lua

local onedark = require("onedark")
onedark.setup {
style = "darker",
highlights = {
Comment = {fg = '#F62681'},
["@comment"] = {fg = '#F62681'},
["@lsp.type.comment"] = {fg = '#F62681'},
},
}
onedark.load()