Signed-off-by: Lee Tang <i@d0zingcat.dev>
This commit is contained in:
Lee Tang
2023-01-30 14:49:33 +08:00
parent d0a65bbc5d
commit d89197d212
4 changed files with 26 additions and 4 deletions

View File

@@ -192,6 +192,19 @@ return require('packer').startup(function(use)
require('config.tagbar')
end,
})
-- BETTER editor
use({
'vinnymeller/swagger-preview.nvim',
run = "npm install -g swagger-ui-watcher",
config = function()
require("swagger-preview").setup({
-- The port to run the preview server on
port = 9000,
-- The host to run the preview server on
host = "localhost",
})
end,
})
-- LANGUAGES
use({