From 87c4911c4d88f918318c83333be81eac2733b670 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Tue, 7 Jan 2020 17:48:24 +0200 Subject: [PATCH] Prettify coc-settings Signed-off-by: Marko Korhonen --- home/.config/nvim/coc-settings.json | 75 ++++++++++++++--------------- 1 file changed, 37 insertions(+), 38 deletions(-) diff --git a/home/.config/nvim/coc-settings.json b/home/.config/nvim/coc-settings.json index e2a086b..6ad1c29 100644 --- a/home/.config/nvim/coc-settings.json +++ b/home/.config/nvim/coc-settings.json @@ -1,40 +1,39 @@ { - "python.jediEnabled": false, - "suggest.noselect": false, - "suggest.echodocSupport": true, - "suggest.maxCompleteItemCount": 20, - "diagnostic.virtualText": true, - "coc.preferences.formatOnSaveFiletypes": [ - "javascript", - "typescript", - "typescriptreact", - "json", - "javascriptreact", - "yaml" - ], - "eslint.filetypes": [ - "javascript", - "typescript", - "typescriptreact", - "javascriptreact" - ], - "prettier.singleQuote": true, - "diagnostic.errorSign": "•", - "diagnostic.warningSign": "•", - "diagnostic.infoSign": "•", - "suggest.snippetIndicator": "~", - "languageserver": { - "bash": { - "command": "bash-language-server", - "args": ["start"], - "filetypes": ["sh"], - "ignoredRootPaths": ["~"] - }, - "xml": { - "command": "xml-language-server", - "args": ["start"], - "filetypes": ["xml"], - "ignoredRootPaths": ["~"] - } - } + "python.jediEnabled": false, + "suggest.noselect": false, + "suggest.echodocSupport": true, + "suggest.maxCompleteItemCount": 20, + "coc.preferences.formatOnSaveFiletypes": [ + "javascript", + "typescript", + "typescriptreact", + "json", + "javascriptreact", + "yaml" + ], + "prettier.singleQuote": true, + "diagnostic.errorSign": "•", + "diagnostic.warningSign": "•", + "diagnostic.infoSign": "•", + "suggest.snippetIndicator": "~", + "languageserver": { + "bash": { + "command": "bash-language-server", + "args": ["start"], + "filetypes": ["sh"], + "ignoredRootPaths": ["~"] + }, + "xml": { + "command": "xml-language-server", + "args": ["start"], + "filetypes": ["xml"], + "ignoredRootPaths": ["~"] + } + }, + "markdownlint.config": { + "rules": { + "default": true, + "line_length": false + } + } }