Compare commits

...

2 Commits

Author SHA1 Message Date
siduck 32d8a1fdff make nvconfig base46.integrations support new integrations only
0f933db516 so now users will just have to add the new integrations name instead of including default ones too
2 months ago
siduck 82413d957e disable colornames in nvim-colorizer 2 months ago

@ -37,7 +37,7 @@ end
-- disable semanticTokens -- disable semanticTokens
M.on_init = function(client, _) M.on_init = function(client, _)
if not conf.semantic_tokens and client.supports_method "textDocument/semanticTokens" then if client.supports_method "textDocument/semanticTokens" then
client.server_capabilities.semanticTokensProvider = nil client.server_capabilities.semanticTokensProvider = nil
end end
end end

@ -20,6 +20,7 @@ return {
{ {
"NvChad/nvim-colorizer.lua", "NvChad/nvim-colorizer.lua",
event = "User FilePost", event = "User FilePost",
opts = { user_default_options = { names = false } },
config = function(_, opts) config = function(_, opts)
require("colorizer").setup(opts) require("colorizer").setup(opts)

@ -63,10 +63,7 @@ M.ui = {
cheatsheet = { theme = "grid" }, -- simple/grid cheatsheet = { theme = "grid" }, -- simple/grid
lsp = { lsp = { signature = true },
signature = true,
semantic_tokens = false,
},
term = { term = {
-- hl = "Normal:term,WinSeparator:WinSeparator", -- hl = "Normal:term,WinSeparator:WinSeparator",
@ -83,24 +80,7 @@ M.ui = {
} }
M.base46 = { M.base46 = {
integrations = { integrations = {},
"blankline",
"cmp",
"defaults",
"devicons",
"git",
"lsp",
"mason",
"nvcheatsheet",
"nvdash",
"nvimtree",
"statusline",
"syntax",
"treesitter",
"tbline",
"telescope",
"whichkey",
},
} }
return vim.tbl_deep_extend("force", M, require "chadrc") return vim.tbl_deep_extend("force", M, require "chadrc")

Loading…
Cancel
Save