diff options
| author | James Trew <66286082+jamestrew@users.noreply.github.com> | 2021-10-27 18:57:21 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-27 15:57:21 -0700 |
| commit | d35d4f860ce4bbfbc6c873cc47fd1d2c49f29527 (patch) | |
| tree | 6f2f8704cdcc43ee95cdaef1befa9aed04647bf3 | |
| parent | docs: update CONFIG.md (diff) | |
| download | nvim-lspconfig-d35d4f860ce4bbfbc6c873cc47fd1d2c49f29527.tar nvim-lspconfig-d35d4f860ce4bbfbc6c873cc47fd1d2c49f29527.tar.gz nvim-lspconfig-d35d4f860ce4bbfbc6c873cc47fd1d2c49f29527.tar.bz2 nvim-lspconfig-d35d4f860ce4bbfbc6c873cc47fd1d2c49f29527.tar.lz nvim-lspconfig-d35d4f860ce4bbfbc6c873cc47fd1d2c49f29527.tar.xz nvim-lspconfig-d35d4f860ce4bbfbc6c873cc47fd1d2c49f29527.tar.zst nvim-lspconfig-d35d4f860ce4bbfbc6c873cc47fd1d2c49f29527.zip | |
docs(pasls): fix broken code block (#1343)
| -rw-r--r-- | lua/lspconfig/pasls.lua | 25 |
1 files changed, 7 insertions, 18 deletions
diff --git a/lua/lspconfig/pasls.lua b/lua/lspconfig/pasls.lua index 61003d1b..4cceb13f 100644 --- a/lua/lspconfig/pasls.lua +++ b/lua/lspconfig/pasls.lua @@ -18,24 +18,13 @@ An LSP server implementation for Pascal variants that are supported by Free Pasc First set `cmd` to the Pascal lsp binary. Customization options are passed to pasls as environment variables for example in your `.bashrc`: - ```bash -export FPCDIR='/usr/lib/fpc/src', -export PP='/usr/lib/fpc/3.2.2/ppcx64', -export LAZARUSDIR='/usr/lib/lazarus', -export FPCTARGET='', -export FPCTARGETCPU='x86_64', - - ``` - -`FPCDIR` : FPC source directory (This is the only required option for the server to work). - -`PP` : Path to the Free Pascal compiler executable. - -`LAZARUSDIR` : Path to the Lazarus sources. - -`FPCTARGET` : Target operating system for cross compiling. - -`FPCTARGETCPU` : Target CPU for cross compiling. +```bash +export FPCDIR='/usr/lib/fpc/src' # FPC source directory (This is the only required option for the server to work). +export PP='/usr/lib/fpc/3.2.2/ppcx64' # Path to the Free Pascal compiler executable. +export LAZARUSDIR='/usr/lib/lazarus' # Path to the Lazarus sources. +export FPCTARGET='' # Target operating system for cross compiling. +export FPCTARGETCPU='x86_64' # Target CPU for cross compiling. +``` ]], }, } |
