35 lines
885 B
Lua
35 lines
885 B
Lua
--[[
|
|
Path: lua/custom/plugins/init.lua
|
|
Module: custom.plugins
|
|
|
|
Purpose
|
|
Lazy.nvim specs for plugins that are not part of the main `plugins.kickstart`
|
|
tree (e.g. HTTP client, experimental additions).
|
|
|
|
Rationale
|
|
`plugins.kickstart.plugins.spec` appends this module last so your personal
|
|
plugins stay merge-friendly and easy to find. Neo-tree and core stack live
|
|
under `plugins.kickstart.plugins` instead.
|
|
|
|
See `:help lazy.nvim-plugin-spec`.
|
|
]]
|
|
|
|
---@module 'lazy'
|
|
---@type LazySpec
|
|
return {
|
|
{
|
|
'mistweaverco/kulala.nvim',
|
|
keys = {
|
|
{ '<leader>Rs', desc = 'Send request' },
|
|
{ '<leader>Ra', desc = 'Send all requests' },
|
|
{ '<leader>Rb', desc = 'Open scratchpad' },
|
|
},
|
|
ft = { 'http', 'rest' },
|
|
opts = {
|
|
global_keymaps = false,
|
|
global_keymaps_prefix = '<leader>R',
|
|
kulala_keymaps_prefix = '',
|
|
},
|
|
},
|
|
}
|