8 lines
208 B
Bash
8 lines
208 B
Bash
# shellcheck shell=bash
|
|
# vim: ft=sh
|
|
|
|
! command -v uncrustify > /dev/null && return
|
|
|
|
UNCRUSTIFY_CONFIG="${XDG_CONFIG_HOME}/uncrustify/uncrustify.cfg"
|
|
[ -r "${UNCRUSTIFY_CONFIG}" ] && export UNCRUSTIFY_CONFIG
|