1. Start the LSP server for the project using `lsp server start <project_path>`.
2. Use `lsp outline <file_path>` to get the file structure.
3. Use `lsp definition <file_path> --scope <symbol_name>` to navigate to symbol definitions.
4. Use `lsp reference <file_path> --scope <symbol_name>` to find all usages of a symbol.
5. Use `lsp doc <file_path> --scope <symbol_name>` to get documentation for a symbol.
6. Use `lsp search <symbol_name>` to search for symbols across the workspace.
7. Use `lsp symbol <file_path> --scope <symbol_name>` to get the complete code of a symbol.