Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 407 Bytes

HelixConfiguration.md

File metadata and controls

11 lines (10 loc) · 407 Bytes

Helix Configuration

Helix comes with support for clangd and clang-format out of the box! However, you also need to configure the clangd server to not insert headers improperly. To do this, create a .helix/languages.toml file in the project root:

[language-server.ladybird]
command = "clangd"
args = ["--header-insertion=never"]

[[language]]
name = "cpp"
language-servers = ["ladybird"]