diff options
| -rw-r--r-- | lua/plugins/lsp.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index e7bb1aa..fcdc529 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -494,3 +494,7 @@ end -- end -- end --end +vim.api.nvim_create_user_command("NullLsToggle", function() + -- you can also create commands to disable or enable sources + require("null-ls").toggle({}) +end, {}) |
