diff options
author | Christian Chiarulli <[email protected]> | 2021-07-25 00:13:35 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-25 00:13:35 -0400 |
commit | 1c3b80d0411e9a2a3594bde92ccecb8908402bf7 (patch) | |
tree | 796ddbd3c99c6f2b33191f98513a0ff2d15f235c /lua/lsp/null-ls.lua | |
parent | 98f8a77819670ce6012216e01885c135a6d3a289 (diff) |
implement language overrides (#1081)
Co-authored-by: Chris <[email protected]>
Diffstat (limited to 'lua/lsp/null-ls.lua')
-rw-r--r-- | lua/lsp/null-ls.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lsp/null-ls.lua b/lua/lsp/null-ls.lua index 43d4400a..099a6dc1 100644 --- a/lua/lsp/null-ls.lua +++ b/lua/lsp/null-ls.lua @@ -45,6 +45,7 @@ local function setup_ls(exe, type) end local function setup(filetype, type) + local executables = nil if type == "diagnostics" then executables = lvim.lang[filetype].linters end |