From 20911604344929662d3db8f083e9a1a21700f040 Mon Sep 17 00:00:00 2001 From: siduck Date: Wed, 15 Jun 2022 17:08:39 +0530 Subject: [PATCH] BREAKING change for hl_override users put your new highlight groups to hl_add and put your overriden highlight groups which are present in our default theme in hl_override --- lua/core/default_config.lua | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/lua/core/default_config.lua b/lua/core/default_config.lua index 2562dfb..a2ef345 100644 --- a/lua/core/default_config.lua +++ b/lua/core/default_config.lua @@ -5,19 +5,18 @@ local M = {} M.options = { - -- load your options here or load module with options1 + -- load your options here or load module with options user = function() end, nvChad = { - -- updater update_url = "https://github.com/NvChad/NvChad", update_branch = "main", }, } ----- UI ----- - M.ui = { + -- hl = highlights + hl_add = {}, hl_override = {}, changed_themes = {}, theme_toggle = { "onedark", "one_light" }, @@ -28,19 +27,17 @@ M.ui = { M.plugins = { override = {}, remove = {}, + user = {}, options = { lspconfig = { setup_lspconf = "", -- path of lspconfig file }, statusline = { - separator_style = "default", -- default/round/block + separator_style = "default", -- default/round/block/arrow config = "%!v:lua.require'ui.statusline'.run()", }, }, - - -- add, modify, remove plugins - user = {}, } -- check core.mappings for table structure