use treesitter coldfolding

This commit is contained in:
Ray Elliott 2022-02-06 10:28:49 +00:00
commit 939041bd35
4 changed files with 9 additions and 2 deletions

View file

@ -1,5 +1,11 @@
extends html
snippet pre "<pre>print_r()</pre>"
echo "<pre>";
print_r($0);
echo "</pre>";
endsnippet
snippet if "if () {}"
if ($1) {
$0