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.
18 lines
652 B
18 lines
652 B
return {
|
|
"jose-elias-alvarez/null-ls.nvim",
|
|
opts = function(_, config)
|
|
-- config variable is the default configuration table for the setup function call
|
|
-- local null_ls = require "null-ls"
|
|
|
|
-- Check supported formatters and linters
|
|
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/formatting
|
|
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics
|
|
config.sources = {
|
|
-- Set a formatter
|
|
-- null_ls.builtins.formatting.stylua,
|
|
-- null_ls.builtins.formatting.prettier,
|
|
}
|
|
return config -- return final config table
|
|
end,
|
|
}
|