This commit is contained in:
Christian Nieves
2023-03-27 12:32:57 -05:00
parent dce44d8c0c
commit ddd2d48665
17 changed files with 52 additions and 83 deletions

View File

@ -5,7 +5,8 @@ function M.map(mode, lhs, rhs, opts)
if opts then
options = vim.tbl_extend("force", options, opts)
end
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
-- vim.api.nvim_set_keymap(mode, lhs, rhs, options)
vim.keymap.set(mode, lhs, rhs, options)
end
function M.use_google()