Adding json plugins
This commit is contained in:
parent
269c3eeaba
commit
7548d9147d
7
init.lua
7
init.lua
|
@ -124,6 +124,9 @@ require('lazy').setup({
|
|||
|
||||
-- Useful plugin to show you pending keybinds.
|
||||
{ 'folke/which-key.nvim', opts = {} },
|
||||
-- JQ integration
|
||||
{ 'gennaro-tedesco/nvim-jqx', ft = { "json", "yaml" } }, -- Qs with integrations
|
||||
{ 'mogelbrod/vim-jsonpath', ft = { "json", "yaml" } }, -- Shows current JSON path
|
||||
{
|
||||
-- Adds git related signs to the gutter, as well as utilities for managing changes
|
||||
'lewis6991/gitsigns.nvim',
|
||||
|
@ -771,6 +774,10 @@ vim.opt.guicursor =
|
|||
vim.keymap.set("n", "Q", "<nop>")
|
||||
vim.keymap.set("n", "W", "<nop>")
|
||||
|
||||
-- JsonPath
|
||||
vim.keymap.set("n", "<Leader>json", ":JsonPath<CR>")
|
||||
vim.keymap.set("n", "<Leader>qjson", ":JsonPath ")
|
||||
|
||||
-- VBAll
|
||||
vim.api.nvim_command("ca vball vertical ball")
|
||||
|
||||
|
|
Loading…
Reference in New Issue