diff options
author | bscan <10503608+bscan@users.noreply.github.com> | 2024-04-13 14:04:59 -0400 |
---|---|---|
committer | bscan <10503608+bscan@users.noreply.github.com> | 2024-04-13 14:04:59 -0400 |
commit | 5b88333ea26119255964dde79d207df1ef548e49 (patch) | |
tree | 2faaf8373dcc5ee21f1f7362594d57b1fcf8aefd | |
parent | de09eb0ddabfd63682260669b02ee38e49892abb (diff) | |
download | PerlNavigator-5b88333ea26119255964dde79d207df1ef548e49.zip |
Adding cmd instructions per #127
-rw-r--r-- | README.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -147,11 +147,12 @@ install Perl Navigator. The simplest configuration is the following: ```lua -require'lspconfig'.perlnavigator.setup{} +require'lspconfig'.perlnavigator.setup{ cmd = { "perlnavigator" } } ``` -A configuration with a number of options set looks like: +A configuration with a number of options set looks some like the following. The depends if you installed globally or not. ```lua require'lspconfig'.perlnavigator.setup{ + cmd = { "perlnavigator" }, settings = { perlnavigator = { perlPath = 'perl', |