config.toml

 1name = "C++"
 2grammar = "cpp"
 3path_suffixes = ["cc", "hh", "cpp", "h", "hpp", "cxx", "hxx", "c++", "ipp", "inl", "ixx", "cu", "cuh", "C", "H"]
 4line_comments = ["// ", "/// ", "//! "]
 5autoclose_before = ";:.,=}])>"
 6brackets = [
 7    { start = "{", end = "}", close = true, newline = true },
 8    { start = "[", end = "]", close = true, newline = true },
 9    { start = "(", end = ")", close = true, newline = true },
10    { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
11    { start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
12    { start = "/*", end = " */", close = true, newline = false, not_in = ["string", "comment"] },
13]
14debuggers = ["CodeLLDB", "GDB"]
15documentation = { start = "/*", end = "*/", prefix = "* ", tab_size = 1 }