~~/.doom.d -> ~/.config/doom

This commit is contained in:
dx
2020-07-15 15:56:08 +01:00
parent 33edf2cf6d
commit 6bdf6db3b4
42 changed files with 16 additions and 14 deletions

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: For_reverse
# key: forr
# --
for (${1:int} ${2:i} = ${3:sz}; $2 >= ${4:0}; --$2) {
$0
}