diff options
| -rw-r--r-- | lua/plugins/none_ls.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lua/plugins/none_ls.lua b/lua/plugins/none_ls.lua new file mode 100644 index 0000000..469175f --- /dev/null +++ b/lua/plugins/none_ls.lua @@ -0,0 +1,16 @@ +return { + { + "nvimtools/none-ls.nvim", + dependencies = { "nvimtools/none-ls-extras.nvim" }, + config = function() + local null_ls = require("null-ls") + + null_ls.setup({ + sources = { + null_ls.builtins.formatting.black, + null_ls.builtins.completion.spell, + }, + }) + end, + }, +} |
