NTBBloodbath / galaxyline.nvim

neovim statusline plugin written in lua
MIT License
164 stars 16 forks source link

feat: specify servers to ignore for GetLspClient provider #31

Closed axieax closed 2 years ago

axieax commented 2 years ago

This adds the options to specific servers to be ignore, i.e. not displayed from the GetLspClient provider. Users can pass in a table of server names to ignore into the provider's function to enable this, e.g.

{
  LspClient = {
    provider = function()
      return require("galaxyline.providers.lsp").get_lsp_client("", { "null-ls" })
    end,
  },
},