dotfiles/.config/fish/functions/clang-format.fish

5 lines
215 B
Fish
Raw Normal View History

2025-03-02 14:26:08 +01:00
function clang-format
set --local style "{BasedOnStyle: llvm, IndentWidth: 4, AllowShortFunctionsOnASingleLine: None, KeepEmptyLinesAtTheStartOfBlocks: false}"
command clang-format -style="$style" $argv
end