美文网首页
Nvim 内置 LSP 配置 Nim LSP

Nvim 内置 LSP 配置 Nim LSP

作者: 夙小叶 | 来源:发表于2022-01-03 14:08 被阅读0次
    2022_01_03_14_07_20.png

    lspconfig 配置

    local nimlsp_opt = {
      cmd       = { "nimlsp" },
      filetypes = { "nim" },
      root_dir  = require "lspconfig".util.root_pattern("*.nim"),
      single_file_support = true,
    }
    
    require('lspconfig')['nimls'].setup { nimlsp_opt, capabilities = capabilities }
    

    安装 alaviss/nim.nvim,激活 LSP,提供补全、高亮等

    -- Nim
    use { 'alaviss/nim.nvim' }
    

    相关文章

      网友评论

          本文标题:Nvim 内置 LSP 配置 Nim LSP

          本文链接:https://www.haomeiwen.com/subject/unexcrtx.html