mirror of https://github.com/fredrikekre/.dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
400 B
16 lines
400 B
-- https://github.com/jose-elias-alvarez/null-ls.nvim |
|
return { |
|
"jose-elias-alvarez/null-ls.nvim", |
|
dependencies = { |
|
{"nvim-lua/plenary.nvim"}, |
|
}, |
|
config = function() |
|
local null_ls = require("null-ls") |
|
local opts = { |
|
sources = { |
|
null_ls.builtins.diagnostics.shellcheck, |
|
}, |
|
} |
|
null_ls.setup(opts) |
|
end, |
|
}
|
|
|