Skip to content

Commit d4c8c31

Browse files
committed
feat(plugins)!: Remove neodim
1 parent f4e17d0 commit d4c8c31

File tree

3 files changed

+0
-56
lines changed

3 files changed

+0
-56
lines changed

lua/modules/configs/ui/neodim.lua

Lines changed: 0 additions & 37 deletions
This file was deleted.

lua/modules/plugins/ui.lua

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ ui["hoob3rt/lualine.nvim"] = {
3737
event = { "BufReadPost", "BufAdd", "BufNewFile" },
3838
config = require("ui.lualine"),
3939
}
40-
ui["zbirenbaum/neodim"] = {
41-
lazy = true,
42-
event = "LspAttach",
43-
config = require("ui.neodim"),
44-
}
4540
ui["karb94/neoscroll.nvim"] = {
4641
lazy = true,
4742
event = { "CursorHold", "CursorHoldI" },

lua/modules/utils/init.lua

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -236,20 +236,6 @@ function M.gen_alpha_hl()
236236
set_global_hl("AlphaFooter", colors.yellow)
237237
end
238238

239-
-- Generate blend_color for neodim.
240-
function M.gen_neodim_blend_attr()
241-
local trans_bg = require("core.settings").transparent_background
242-
local appearance = require("core.settings").background
243-
244-
if trans_bg and appearance == "dark" then
245-
return "#000000"
246-
elseif trans_bg and appearance == "light" then
247-
return "#FFFFFF"
248-
else
249-
return M.hl_to_rgb("Normal", true)
250-
end
251-
end
252-
253239
---Convert number (0/1) to boolean
254240
---@param value number @The value to check
255241
---@return boolean|nil @Returns nil if failed

0 commit comments

Comments
 (0)