diff options
author | Chris <[email protected]> | 2020-05-11 18:48:29 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-05-11 18:48:29 -0400 |
commit | a6fa807ca04e59307073cc5cd3391d511725ffab (patch) | |
tree | a03f6a2cc73cda9d8bcb3cd73a51adfa8b054d90 /README.md | |
parent | bcd7a4ff30c0fde6b2f7eef7b2535b51228d872d (diff) |
bash language server config
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -81,6 +81,29 @@ let g:node_host_prog = expand("~/.nvm/versions/node/v12.16.1/bin/neovim-node-hos Explanations and installation instruction can be found on my blog +## Language Servers + +Since CoC doesn't support all languages in there extensions +I recommend installing some language servers from scratch +and adding them to your `coc-settings.json` file + +Example: + +- bash + + `npm i -g bash-language-server` + + ``` + "languageserver": { + "bash": { + "command": "bash-language-server", + "args": ["start"], + "filetypes": ["sh"], + "ignoredRootPaths": ["~"] + } + } + ``` + # TODO - People asked about vimwiki I kinda hate it but maybe I'll add it @@ -88,7 +111,7 @@ Explanations and installation instruction can be found on my blog - spectre, or async task/run - setup custom paths - install script envsubst is your friend -- add better whitespace pluginand a toggle, video about clean code maybe +- add better whitespace plugin and a toggle, video about clean code maybe - echodoc and buitin support with CoC - snippets (coc snippets) - git messenger |