From 9d677af06153a8a68e52cdb10e6eec5db4bcaa6a Mon Sep 17 00:00:00 2001 From: siduck Date: Sun, 10 Mar 2024 18:53:10 +0530 Subject: [PATCH] rm useless integrations & add integrations list in readme --- README.md | 31 +++++++++++++++++++++- lua/base46/integrations/illuminate.lua | 7 ----- lua/base46/integrations/nvchad_updater.lua | 14 ---------- 3 files changed, 30 insertions(+), 22 deletions(-) delete mode 100644 lua/base46/integrations/illuminate.lua delete mode 100644 lua/base46/integrations/nvchad_updater.lua diff --git a/README.md b/README.md index 20e0dc3..b67f271 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,36 @@ ## NvChad theme plugin - This plugin's a whole re-write of Norcalli's plugin. -- This theme plugin is supposed to be used along with [NvChad](https://github.com/NvChad/NvChad) only +- It should be used along with [NvChad](https://github.com/NvChad/NvChad) for best experience. +- Non NvChad users can have the nvconfig module on the path + +## Supported Integrations + +- Bufferline.nvim +- Cmp.nvim +- Codeactionmenu +- Nvim-dap +- Nvim-webdevicons +- Hop.nvim +- Vim-illuminate +- Lsp ( diagnostics ) +- Nvim Navic +- LspSaga +- Mason.nvim +- Notify.nvim +- Nvim-tree +- Telescope.nvim +- Rainbow-delimiters.nvim +- Todo.nvim +- Nvim-treesitter +- Lsp Semantic tokens +- Trouble.nvim +- Whichkey.nvim + +## Configuration + +- Base46 is configured by [nvconfig](https://github.com/NvChad/NvChad/blob/starter/lua/nvconfig.lua) in your path. +- Read the [themeing docs](https://nvchad.com/docs/config/theming) ## Highlight command diff --git a/lua/base46/integrations/illuminate.lua b/lua/base46/integrations/illuminate.lua deleted file mode 100644 index a52b05d..0000000 --- a/lua/base46/integrations/illuminate.lua +++ /dev/null @@ -1,7 +0,0 @@ -local colors = require("base46").get_theme_tb "base_30" - -return { - IlluminatedWordText = { bold = true, reverse = true }, - IlluminatedWordRead = { bold = true, reverse = true }, - IlluminatedWordWrite = { bold = true, reverse = true }, -} diff --git a/lua/base46/integrations/nvchad_updater.lua b/lua/base46/integrations/nvchad_updater.lua deleted file mode 100644 index f69054b..0000000 --- a/lua/base46/integrations/nvchad_updater.lua +++ /dev/null @@ -1,14 +0,0 @@ -local colors = require("base46").get_theme_tb "base_30" - -return { - nvUpdaterTitle = { fg = colors.black, bg = colors.orange }, - nvUpdaterTitleDone = { fg = colors.black, bg = colors.green }, - nvUpdaterTitleFAIL = { fg = colors.black, bg = colors.red }, - - nvUpdaterProgress = { fg = colors.red, bg = colors.one_bg2 }, - nvUpdaterProgressDONE = { fg = colors.green, bg = colors.one_bg2 }, - nvUpdaterProgressFAIL = { fg = colors.red, bg = colors.one_bg2 }, - - nvUpdaterCommits = { fg = colors.green }, - nvUpdaterFAIL = { fg = colors.red }, -}