From 4a66d4752d06cfe0452c55ee5f2b20f84d19c3bb Mon Sep 17 00:00:00 2001 From: kylo252 <59826753+kylo252@users.noreply.github.com> Date: Sat, 8 Jan 2022 14:24:05 +0100 Subject: fix(null-ls): avoid sending invalid opts.args (#2154) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 6de88398..97edf237 100644 --- a/README.md +++ b/README.md @@ -87,9 +87,9 @@ vim.list_extend(lvim.lsp.override, { "pyright" }) -- set a formatter, this will override the language server formatting capabilities (if it exists) local formatters = require "lvim.lsp.null-ls.formatters" formatters.setup { - { exe = "black" }, + { command = "black" }, { - exe = "prettier", + command = "prettier", ---@usage specify which filetypes to enable. By default a providers will attach to all the filetypes it supports. filetypes = { "typescript", "typescriptreact" }, }, @@ -98,9 +98,9 @@ formatters.setup { -- set additional linters local linters = require "lvim.lsp.null-ls.linters" linters.setup { - { exe = "black" }, + { command = "black" }, { - exe = "eslint_d", + command = "eslint_d", ---@usage specify which filetypes to enable. By default a providers will attach to all the filetypes it supports. filetypes = { "javascript", "javascriptreact" }, }, -- cgit v1.2.3