Skip to content

Commit

Permalink
move back to null-ls because none-ls is dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
codepuncher committed Mar 21, 2024
1 parent e9b92b0 commit df33ac5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nvim/lua/lsp/servers/null_ls.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local _plugin, plugin = pcall(require, 'none-ls')
local _plugin, plugin = pcall(require, 'null-ls')
local _M = {
setup = function() end,
}
Expand All @@ -14,7 +14,7 @@ local code_actions = plugin.builtins.code_actions
_M.setup = function(on_attach)
plugin.setup({
debug = true,
root_dir = require('none-ls.utils').root_pattern('.git', 'package.json', 'composer.json'),
root_dir = require('null-ls.utils').root_pattern('.git', 'package.json', 'composer.json'),
sources = {
code_actions.eslint_d,
code_actions.shellcheck,
Expand Down
2 changes: 1 addition & 1 deletion nvim/lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ require('lazy').setup({
'neovim/nvim-lspconfig',
'jose-elias-alvarez/typescript.nvim',
{
'nvimtools/none-ls.nvim',
'jose-elias-alvarez/null-ls.nvim',
dependencies = {
'nvim-lua/plenary.nvim',
},
Expand Down

0 comments on commit df33ac5

Please sign in to comment.