Contribution
solidity-analyzer is deeply integrated into foundry which is increasingly becoming more popular and adoption among devs because of its ability to allow writing tests in solidity itself and because it is really fast in running tests and compiling too. But the tooling around it is not yet very mature.
An LSP server that works with foundry projects will provide devs with important features like:
1. Diagnostics: compiler errors, warnings, informationals, etc.
2. Formatting: with `forge fmt`
3. Outline: the birds eye view of the file including contract names, functions, state variables,e tc.
4. Code navigation: jump to definitions, implemetations, references, etc.
5. Inlay hints, autocompletes
6. And many more LSP features
Out of the mentioned features, first 3 are already implemented.