-
| 
 | 
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            tomlau10
          
      
      
        Jan 5, 2025 
      
    
    Replies: 1 comment 1 reply
-
| 
 
 I don't know much about neovim (I use vscode) but from this neovim config example: #2975 (comment), seems that if you want to add launch options, you have set the  require'lspconfig'.lua_ls.setup {
  cmd = { "lua-language-server", "--logpath=/tmp/nvim/lsp" },
  ... | 
Beta Was this translation helpful? Give feedback.
                  
                    1 reply
                  
                
            
      Answer selected by
        rieje
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
--logpath=twice and this is incorrectmisc.paremetersseems to be vscode only, this is for how the vscode client extension starts the server binaryhttps://luals.github.io/wiki/settings/#miscparameters
I don't know much about neovim (I use vscode) but from this neovim config example: #2975 (comment), seems that if you want to add launch options, you have set the
cmdfield in your config file?