Skip to content

Commit

Permalink
refactor: consistent styling
Browse files Browse the repository at this point in the history
  • Loading branch information
luckasRanarison committed Aug 30, 2024
1 parent 3ed3738 commit fcbe61f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/tailwind-tools/cmp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ M.lspkind_format = function(entry, vim_item)
if vim_item.kind == "Color" and doc then
local content = type(doc) == "string" and doc or doc.value
local r, g, b = utils.extract_color(content)

local style = config.options.cmp.highlight

if r then vim_item.kind_hl_group = utils.set_hl_from(r, g, b, style) end
end

Expand Down
2 changes: 1 addition & 1 deletion lua/tailwind-tools/health.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ M.check = function()
end
end

local function check_plugin(name, module)
local check_plugin = function(name, module)
if pcall(require, module) then
health.ok(name .. " is installed")
else
Expand Down

0 comments on commit fcbe61f

Please sign in to comment.