From 73a5b34c428cd2786f15f3dc96fc4a10ad5a246c Mon Sep 17 00:00:00 2001 From: BenRoe Date: Fri, 21 Feb 2020 23:48:55 +0100 Subject: [PATCH] fix: add graph code highlight and emmet f. VSCode --- .vscode/settings.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..97f93c8 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,12 @@ +{ + "vetur.grammar.customBlocks": { + // https://github.com/vuejs/vetur/issues/975#issuecomment-461197031 + "docs": "md", + "i18n": "json", + "page-query": "graphql", + "static-query": "graphql" + }, + "emmet.includeLanguages": { + "vue": "html" + }, +} \ No newline at end of file