diff options
| author | Brahmajit Das <listout@listout.xyz> | 2025-11-18 21:52:43 +0530 |
|---|---|---|
| committer | Brahmajit Das <listout@listout.xyz> | 2025-11-18 21:52:52 +0530 |
| commit | a4ad6cf3fe24614b39b1c81d117fdd21e4030ad4 (patch) | |
| tree | 83619d205b90ad65a29ee4e313eb6338dc8aacb7 | |
| parent | a05318afe2cbd57e178bf845c3d8689bff69463e (diff) | |
lua: plugins: none-ls: adding config for none-ls
Signed-off-by: Brahmajit Das <listout@listout.xyz>
| -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, + }, +} |
