├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── config └── src ├── definitions └── mod.rs ├── handlers └── mod.rs ├── lib.rs └── main.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmturner/ghostty-lsp/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmturner/ghostty-lsp/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmturner/ghostty-lsp/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmturner/ghostty-lsp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmturner/ghostty-lsp/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- 1 | abc = 123 2 | 3 | -------------------------------------------------------------------------------- /src/definitions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmturner/ghostty-lsp/HEAD/src/definitions/mod.rs -------------------------------------------------------------------------------- /src/handlers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmturner/ghostty-lsp/HEAD/src/handlers/mod.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmturner/ghostty-lsp/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmturner/ghostty-lsp/HEAD/src/main.rs --------------------------------------------------------------------------------