This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// --- Global --- | |
#set page(paper: "a4", margin: 20mm) | |
#set par(justify: true, linebreaks: "optimized") | |
#set text(font: "Literata", size: 13pt) | |
#show link: underline | |
// --- Functions --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Google C++ Style Guide | |
BasedOnStyle: Google | |
BinPackParameters: OnePerLine # https://google.github.io/styleguide/cppguide.html#Function_Declarations_and_Definitions | |
# Personal preferences that does not contradict Google Style | |
LineEnding: LF |