From 41b767ecf8f533baf277857503e2fd8bdccc757f Mon Sep 17 00:00:00 2001 From: max397574 Date: Sun, 24 Oct 2021 13:59:05 +0200 Subject: =?UTF-8?q?feat(plugin):=20=E2=9C=A8expose=20mappings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/startup.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lua/startup.lua') diff --git a/lua/startup.lua b/lua/startup.lua index 4aea5e0..87bf597 100644 --- a/lua/startup.lua +++ b/lua/startup.lua @@ -59,28 +59,28 @@ local function create_mappings(mappings) vim.api.nvim_buf_set_keymap( 0, "n", - "", + settings.mappings.execute_command, ":lua require'startup'.check_line()", opts ) vim.api.nvim_buf_set_keymap( 0, "n", - "o", + settings.mappings.open_file, "lua require('startup').open_file()", opts ) vim.api.nvim_buf_set_keymap( 0, "n", - "", + settings.mappings.open_section, "lua require'startup'.open_section()", opts ) vim.api.nvim_buf_set_keymap( 0, "n", - "", + settings.mappings.open_file_split, "lua require('startup').open_file_vsplit()", opts ) -- cgit v1.2.3