un-object orient some functions

This commit is contained in:
2024-02-05 22:30:55 -05:00
parent d94b454eb6
commit 119127accf
5 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ local function lsp_attach(client, bufnr)
vim.fn.sign_define(name, { text = text, texthl = name })
end
local map = function(m, lhs, rhs)
local function map(m, lhs, rhs)
local opts = { remap = false, silent = true, buffer = bufnr }
vim.keymap.set(m, lhs, rhs, opts)
end