This repository has been archived by the owner on Aug 12, 2023. It is now read-only.
My null-ls
configuration is not getting loaded
#98
Unanswered
Shivansh-007
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Your actual null-ls configuration seems fine, but there's definitely an issue with your overall configuration. The structure is too complicated for me to go through and debug, but I would try not using lazy loading. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My Neovim dots: https://github.com/Shivansh-007/dotfiles/tree/main/.config/nvim
For some reason my
null-ls
configuration is not getting loaded, in fact, I think it is my whole LSP configuration. I can say this because https://github.com/Shivansh-007/dotfiles/blob/5ed1badc2461aeb979d9add088b5d3b0e6fc131c/.config/nvim/lua/plugins/lsp/init.lua#L90 doesn't get printed, https://github.com/Shivansh-007/dotfiles/blob/5ed1badc2461aeb979d9add088b5d3b0e6fc131c/.config/nvim/lua/plugins/lsp/init.lua#L61 I cannot see these commands being added, nor my formatters work.On manually running the formatters manually (
:lua require("plugins.lsp.formatting").format()
), no changes are happening. To confirm this I checked whether the formatters forpy
are registered and this is what i get when i run:lua require("plugins.lsp.null-ls").has_formatter("py")
:I have
black
installed, but still just to check I ran it on alua
file withstylua.toml
in its root, and I receive similar results. Not sure if this is the right place to ask this question, but I didn't know a better place.Thanks
Beta Was this translation helpful? Give feedback.
All reactions