diff --git a/documentation/content/en/articles/freebsd-src-lsp/_index.adoc b/documentation/content/en/articles/freebsd-src-lsp/_index.adoc --- a/documentation/content/en/articles/freebsd-src-lsp/_index.adoc +++ b/documentation/content/en/articles/freebsd-src-lsp/_index.adoc @@ -73,7 +73,7 @@ * Language server implementations ** package:devel/ccls[] -** package:devel/llvm12[] (Other versions are okay, but newer is better. Replace `clangd12` with clangdN in case other versions are used.) +** package:devel/llvm15[] (Other versions are okay, but newer is better. Replace `clangd12` with clangdN in case other versions are used.) * Editors ** package:editors/vim[] ** package:editors/neovim[] @@ -112,7 +112,7 @@ To enable the LSP client plugin in the editor, add the following snippet into [.filepath]#~/.config/nvim/init.vim# when using Neovim, or [.filepath]#~/.vim/vimrc# when using Vim: -.For ccls +* For ccls [source,vim] .... au User lsp_setup call lsp#register_server({ @@ -126,7 +126,7 @@ \ }}) .... -.For clangd +* For clangd [source,vim] .... au User lsp_setup call lsp#register_server({ @@ -185,7 +185,7 @@ Enter `Preferences: Open Settings (JSON)` into the palette and hit `Enter` to open [.filepath]#settings.json#. Depending on the language server implementations, put one of the following JSON key/value pairs in [.filepath]#settings.json#: -.For clangd +* For clangd [source,json] .... [ @@ -196,11 +196,11 @@ "--background-index", "--header-insertion=never" ], - "clangd.path": "clangd12" + "clangd.path": "clangd15" ] .... -.For ccls +* For ccls [source,json] .... [