diagnosticls-configs-nvim icon indicating copy to clipboard operation
diagnosticls-configs-nvim copied to clipboard

An unofficial collection of linters and formatters configured for diagnostic-languageserver for neovim.

Results 2 diagnosticls-configs-nvim issues
Sort by recently updated
recently updated
newest added

I'd suggest doing the following in [fs.lua](https://github.com/creativenull/diagnosticls-configs-nvim/blob/main/lua/diagnosticls-configs/fs.lua). ```diff if vim.fn.filereadable(binpath) == 0 then - add_checkhealth_error(name) + return '' end ``` ```diff if local_binpath == '' then return get_global_exec(name) end +...

Omit `init()` and `setup()` just like it was done in [https://github.com/creativenull/efmls-configs-nvim/pull/30](https://github.com/creativenull/efmls-configs-nvim/pull/30). The reason being that having two separate functions to have the user setup is not very friendly, the preference...