WRITELOOP

HOW TO CODE MAPPINGS INSIDE LUA FUNCTIONS ON NEOVIM

2021 May 25

Code:

vim.api.nvim_set_keymap(
	"n",
	"<leader>cd",
	":lua require'telescope'.extensions.zoxide.list{}<CR>",
	{noremap = true, silent = 	true}
)
NOTE: The original content(s) that inspired this one can be found at:
https://github.com/jvgrootveld/telescope-zoxide
All copyright and intellectual property of each one belongs to its' original author.