├── README.md └── scripts └── format.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wincent/vim-university/HEAD/README.md -------------------------------------------------------------------------------- /scripts/format.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | npx -y prettier --loglevel warn --write '**/*.md' 4 | --------------------------------------------------------------------------------