summaryrefslogtreecommitdiffstats
path: root/after/plugin/lsp.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--after/plugin/lsp.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/after/plugin/lsp.lua b/after/plugin/lsp.lua
index 8610be0..da1a9c8 100644
--- a/after/plugin/lsp.lua
+++ b/after/plugin/lsp.lua
@@ -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