poljar / typos.nvim

Using typos-cli to show diagnostics warnings in nvim
MIT License
14 stars 0 forks source link

Code actions with out null-ls #2

Open sajadspeed opened 10 months ago

sajadspeed commented 10 months ago

Hi, How can i use code actions with out null-ls? I use cmp and nvim-lint for compilation and linting.

poljar commented 10 months ago

Sorry, that's not supported.

sajadspeed commented 10 months ago

Does that mean there is no way I can even use the diagnostics feature without using null-ls?

poljar commented 10 months ago

Diagnostics should work without null-ls, but code actions require null-ls.

sajadspeed commented 10 months ago

No its not working. I use lazy.nvim and use this code for install and setup:

return {
    "poljar/typos.nvim",
    config = function()
        require('typos').setup()
    end,
}