Files
dotfiles/nvim/after/plugin/export-to-vscode.lua
2022-08-10 11:03:55 +02:00

7 lines
270 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
--- export-to-vscode.nvim https://github.com/elijahmanor/export-to-vscode.nvim
local keymap = vim.api.nvim_set_keymap
local opts = { noremap = true, silent = true }
-- Keymaps
keymap("n", "<leader>code", [[<Cmd>lua require("export-to-vscode").launch()<CR>]], opts)