Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
snoweuph committed Jun 1, 2024
1 parent 8d254bb commit 2535f51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/lualine/extensions/nvim-dap-ui.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
EXTENSION = {}
M = {}

local function get_color_codes(name)
local hl = vim.api.nvim_get_hl(0, { name = name })
Expand Down Expand Up @@ -28,7 +28,7 @@ local function parse_control_element(element)
return color, "%" .. action_element
end

function EXTENSION.setup(config)
function M.setup(config)
local dapui = {}
dapui.filetypes = {
"dap-repl",
Expand Down Expand Up @@ -94,4 +94,4 @@ function EXTENSION.setup(config)
return dapui
end

return EXTENSION
return M

0 comments on commit 2535f51

Please sign in to comment.