Add config.org + replace setup-editing/general.el

This commit is contained in:
laurensmiers 2018-06-11 22:57:27 +02:00
parent ae07ba56ef
commit 3abf958cc8
7 changed files with 454 additions and 325 deletions

View file

@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# name: for with loop variable
# key: fori
# --
for (${1:int i = 0}; ${2:i < N}; ${3:++i}) {
$0
}