Skip to content

Commit

Permalink
Replace null-ls with none-ls
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrodgers42 committed Mar 20, 2024
1 parent 8a6717f commit aa03c8a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions vim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ local plugins = {
'nmac427/guess-indent.nvim',
'onsails/lspkind.nvim',
'Shatur/neovim-session-manager',
'jose-elias-alvarez/null-ls.nvim',
'nvimtools/none-ls.nvim',
'mfussenegger/nvim-jdtls',
'mrded/nvim-lsp-notify',
'rcarriga/nvim-notify',
Expand Down Expand Up @@ -445,6 +445,9 @@ local language_configs = {
language_server = "tsserver",
parser = "typescript"
},
{
language_server = "eslint"
},
{
language_server = "yamlls",
parser = "yaml"
Expand All @@ -459,7 +462,7 @@ local language_configs = {
},
{
parser = "vimdoc"
}
},
}

local buf_map = function(bufnr, mapping, command, opts)
Expand Down Expand Up @@ -839,7 +842,6 @@ configureAlpha()
local null_ls = require("null-ls")
null_ls.setup({
sources = {
null_ls.builtins.code_actions.eslint_d,
null_ls.builtins.code_actions.gitsigns,
null_ls.builtins.formatting.prettier
},
Expand Down

0 comments on commit aa03c8a

Please sign in to comment.