aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/html.lua
diff options
context:
space:
mode:
authorHirokazu Hata <h.hata.ai.t@gmail.com>2020-06-16 13:49:07 +0900
committerHirokazu Hata <h.hata.ai.t@gmail.com>2020-06-16 13:49:07 +0900
commit5f574e91bc3d17da8f6f9afc9902a12f760c8927 (patch)
treeb649906e6c24ff6cf2b62dc9b028c1cdf3d4c303 /lua/nvim_lsp/html.lua
parent[docgen] Update README.md (diff)
downloadnvim-lspconfig-5f574e91bc3d17da8f6f9afc9902a12f760c8927.tar
nvim-lspconfig-5f574e91bc3d17da8f6f9afc9902a12f760c8927.tar.gz
nvim-lspconfig-5f574e91bc3d17da8f6f9afc9902a12f760c8927.tar.bz2
nvim-lspconfig-5f574e91bc3d17da8f6f9afc9902a12f760c8927.tar.lz
nvim-lspconfig-5f574e91bc3d17da8f6f9afc9902a12f760c8927.tar.xz
nvim-lspconfig-5f574e91bc3d17da8f6f9afc9902a12f760c8927.tar.zst
nvim-lspconfig-5f574e91bc3d17da8f6f9afc9902a12f760c8927.zip
config: remove unnecessary code comennts and utf8 option
Remove meaningless code comments because they are increased by copy and paste. Currently, utf8 options are only supported by clangd, so remove them from unnecessary ones.
Diffstat (limited to 'lua/nvim_lsp/html.lua')
-rw-r--r--lua/nvim_lsp/html.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim_lsp/html.lua b/lua/nvim_lsp/html.lua
index 363fba7b..e8ccc0ac 100644
--- a/lua/nvim_lsp/html.lua
+++ b/lua/nvim_lsp/html.lua
@@ -13,7 +13,7 @@ local installer = util.npm_installer {
local root_pattern = util.root_pattern("package.json")
configs[server_name] = {
- default_config = util.utf8_config {
+ default_config = {
cmd = {bin_name, "--stdio"};
filetypes = {"html"};
root_dir = function(fname)