Skip to content

Commit b484ab2

Browse files
committed
Cleanup
1 parent 8d254bb commit b484ab2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lua/lualine/extensions/nvim-dap-ui.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
EXTENSION = {}
1+
local M = {}
22

33
local function get_color_codes(name)
44
local hl = vim.api.nvim_get_hl(0, { name = name })
@@ -28,7 +28,7 @@ local function parse_control_element(element)
2828
return color, "%" .. action_element
2929
end
3030

31-
function EXTENSION.setup(config)
31+
function M.setup(config)
3232
local dapui = {}
3333
dapui.filetypes = {
3434
"dap-repl",
@@ -94,4 +94,4 @@ function EXTENSION.setup(config)
9494
return dapui
9595
end
9696

97-
return EXTENSION
97+
return M

0 commit comments

Comments
 (0)