Skip to content

Commit

Permalink
add color and highlights to user_example
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter authored and kabinspace committed Mar 20, 2022
1 parent 91e0e5e commit e6c2a5a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lua/user_example/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ local config = {
-- Default theme configuration
default_theme = {
diagnostics_style = "none",
-- Modify the color table
colors = {
fg = "#abb2bf",
},
-- Modify the highlight groups
highlights = function(highlights)
local C = require "default_theme.colors"

highlights.Normal = { fg = C.fg, bg = C.bg }
return highlights
end,
},

-- Disable default plugins
Expand Down

0 comments on commit e6c2a5a

Please sign in to comment.