diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-08-30 16:06:22 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-08-30 16:06:22 +0100 |
| commit | f1eabbaa1b4ff1836d0ee8335b31d009203f3775 (patch) | |
| tree | bbe77eacaef8ab8a5999e517c3006973c9e3e44c /snippets/scss.snippets | |
| parent | 823302458ec6c53455a3f34674415c43ce6a3187 (diff) | |
fixed zathura integration with texlab using nvim-texlabconfig
Diffstat (limited to 'snippets/scss.snippets')
| -rw-r--r-- | snippets/scss.snippets | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/snippets/scss.snippets b/snippets/scss.snippets deleted file mode 100644 index 998a120..0000000 --- a/snippets/scss.snippets +++ /dev/null @@ -1,44 +0,0 @@ -extends css - -snippet $ - $${1:variable}: ${0:value}; -snippet imp - @import '${0}'; -snippet mix - @mixin ${1:name}(${2}) { - ${0} - } -snippet inc - @include ${1:mixin}(${2}); -snippet ext - @extend ${0}; -snippet fun - @function ${1:name}(${2:args}) { - ${0} - } -snippet if - @if ${1:condition} { - ${0} - } -snippet ife - @if ${1:condition} { - ${2} - } @else { - ${0} - } -snippet eif - @else if ${1:condition} { - ${0} - } -snippet for - @for ${1:$i} from ${2:1} through ${3:3} { - ${0} - } -snippet each - @each ${1:$item} in ${2:items} { - ${0} - } -snippet while - @while ${1:$i} ${2:>} ${3:0} { - ${0} - } |
