From e070f285d39bbe80741ff508254ece70a45383d0 Mon Sep 17 00:00:00 2001 From: Max Miliano Date: Fri, 2 Aug 2024 22:35:33 -0300 Subject: [PATCH] refactor: format code --- lua/dracula/highlights.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/dracula/highlights.lua b/lua/dracula/highlights.lua index 826b2fd..8562603 100644 --- a/lua/dracula/highlights.lua +++ b/lua/dracula/highlights.lua @@ -832,7 +832,7 @@ M.set_highlight = function(colors, config) end if config.plugins['bufferline.nvim'] and config.transparent then - local color = require('dracula.color') + local color = require 'dracula.color' local background = color.shade(colors.base02, 2) nvim_set_hl('BufferLineFill', { bg = background }) nvim_set_hl('BufferLineBufferSelected', { fg = colors.base0 })