Giter Club home page Giter Club logo

Comments (2)

VonHeikemen avatar VonHeikemen commented on September 24, 2024 1

The main problem here is that prettierd is not a language server. So you need some sort of adapter thing.

If you really, really, really want to make it work with Neovim's LSP client you can install efm-langserver. This is a language server that can communicate with other external tools that don't follow the LSP protocol.

Here an example config.

local prettierd = {
  formatCommand = "prettierd '${INPUT}' ${--range-start=charStart} ${--range-end=charEnd}",
  formatCanRange = true,
  formatStdin = true,
  rootMarkers = {
    '.prettierrc',
    '.prettierrc.json',
    '.prettierrc.js',
    '.prettierrc.yml',
    '.prettierrc.yaml',
    '.prettierrc.json5',
    '.prettierrc.mjs',
    '.prettierrc.cjs',
    '.prettierrc.toml',
  },
}

require('lspconfig').efm.setup({
  init_options = {
    documentFormatting = true,
    documentRangeFormatting = true,
  },
  settings = {
    rootMarkers = {'.git/'},
    languages = {
      javascript = {prettierd},
      typescript = {prettierd},
    }
  }
})

require('lspconfig').tsserver.setup({
  on_attach = function(client)
    -- disable tsserver as a formatter
    client.server_capabilities.documentFormattingProvider = false
    client.server_capabilities.documentFormattingRangeProvider = false
  end,
})

After you have everything setup you can add efm in the format_mapping function.

  servers = {
    ['efm'] = {'javascript', 'typescript'},
    ['rust_analyzer'] = {'rust'},
  }

from lsp-zero.nvim.

arbezerra avatar arbezerra commented on September 24, 2024

Thanks @VonHeikemen,

Now I understand why they used null-ls.
As an alternative, it can also be done with nvimtools/none-ls.

from lsp-zero.nvim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.