dotfiles/nvim/.config/nvim/lua/modules/togglelist.lua

5 lines
181 B
Lua

local remap = vim.api.nvim_set_keymap
remap('n', 'qt', ':call ToggleQuickfixList()<CR>', { noremap = true })
remap('n', 'Lt', ':call ToggleLocationList()<CR>', { noremap = true })