Skip to content

Commit

Permalink
feat(plugins): migrate from null-ls to none-ls (#1088)
Browse files Browse the repository at this point in the history
IMO we can switch to `none-ls` before we decide on the best alternative
to `null-ls` b/c it's a drop-in replacement for `null-ls`, and we
can continue to receive future bug fixes as well.
  • Loading branch information
Jint-lzxy authored Dec 5, 2023
1 parent e5722af commit 2b43109
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/core/settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ settings["lsp_deps"] = {
-- Set the general-purpose servers that will be installed during bootstrap here.
-- Check the below link for all supported sources.
-- in `code_actions`, `completion`, `diagnostics`, `formatting`, `hover` folders:
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins
-- https://github.com/nvimtools/none-ls.nvim/tree/main/lua/null-ls/builtins
---@type string[]
settings["null_ls_deps"] = {
"clang_format",
Expand Down
2 changes: 1 addition & 1 deletion lua/modules/plugins/completion.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ completion["joechrisellis/lsp-format-modifications.nvim"] = {
lazy = true,
event = "LspAttach",
}
completion["jose-elias-alvarez/null-ls.nvim"] = {
completion["nvimtools/none-ls.nvim"] = {
lazy = true,
event = { "CursorHold", "CursorHoldI" },
config = require("completion.null-ls"),
Expand Down

0 comments on commit 2b43109

Please sign in to comment.