This commit is contained in:
abs3nt 2023-03-06 10:28:11 -08:00
parent ca31c3332b
commit beff731ea9

View File

@ -35,6 +35,28 @@ return {
ft = { "markdown" }
},
{
'ray-x/web-tools.nvim',
config = function()
require 'web-tools'.setup({
keymaps = {
rename = nil, -- by default use same setup of lspconfig
repeat_rename = '.', -- . to repeat
},
hurl = {
-- hurl default
show_headers = false, -- do not show http headers
floating = false, -- use floating windows (need guihua.lua)
formatters = {
-- format the result by filetype
json = { 'jq' },
html = { 'prettier', '--parser', 'html' },
},
},
})
end
},
-- https://github.com/fatih/vim-go
{
'fatih/vim-go',