diff options
-rw-r--r-- | after/plugin/cmp.lua | 2 | ||||
-rw-r--r-- | after/plugin/lsp.lua | 2 | ||||
-rw-r--r-- | after/plugin/telescope.lua | 2 | ||||
-rw-r--r-- | colors/mellow.ext.lua | 2 | ||||
-rw-r--r-- | lua/conf/binds.lua | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/after/plugin/cmp.lua b/after/plugin/cmp.lua index 7106aae..71cc254 100644 --- a/after/plugin/cmp.lua +++ b/after/plugin/cmp.lua @@ -3,7 +3,7 @@ if not status_ok then return end -local has_words_before = function() +local function has_words_before() unpack = unpack or table.unpack local line, col = unpack(a.nvim_win_get_cursor(0)) return col ~= 0 and a.nvim_buf_get_lines(0, line - 1, line, true) 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 diff --git a/after/plugin/telescope.lua b/after/plugin/telescope.lua index 1f2d34a..31c4a0b 100644 --- a/after/plugin/telescope.lua +++ b/after/plugin/telescope.lua @@ -35,7 +35,7 @@ telescope.setup { preview = { -- add image previews via chafa mime_hook = function(filepath, bufnr, opts) - local is_image = function(filepath) + local function is_image(filepath) local image_extensions = { -- supported image formats 'png', 'jpg', diff --git a/colors/mellow.ext.lua b/colors/mellow.ext.lua index aed1972..aec74a9 100644 --- a/colors/mellow.ext.lua +++ b/colors/mellow.ext.lua @@ -1,5 +1,5 @@ vim.cmd('runtime mellow') -local highlight = function(group, opts, space) +local function highlight(group, opts, space) space = space or 0 if type(group) == 'table' then diff --git a/lua/conf/binds.lua b/lua/conf/binds.lua index 11c791c..b5242a7 100644 --- a/lua/conf/binds.lua +++ b/lua/conf/binds.lua @@ -37,7 +37,7 @@ map('n', '<leader>x', '<cmd>!chmod +x "%"<CR>') -- execute order 111 a.nvim_create_autocmd('FileType', { pattern = 'netrw', callback = function() - local bind = function(lhs, rhs) + local function bind(lhs, rhs) vim.keymap.set('n', lhs, rhs, { remap = true, buffer = true }) end bind('h', '-^') -- Go up a directory |