From d508759e3317c37f8ade8e41bc758438d60fed43 Mon Sep 17 00:00:00 2001 From: "Nicolas A. Ortega Froysa" Date: Tue, 4 Jun 2024 11:05:21 +0200 Subject: [PATCH] Enable bash-language-server manually. --- coc-settings.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/coc-settings.json b/coc-settings.json index 4e90050..462db6e 100644 --- a/coc-settings.json +++ b/coc-settings.json @@ -8,6 +8,11 @@ "latex": { "command": "/sbin/texlab", "filetypes": [ "tex","bib","plaintex","context" ] + }, + "bash": { + "command": "bash-language-server", + "args": ["start"], + "filetypes": ["sh","bash"] } } }