Compare commits

..

No commits in common. "77fdfdf401ba9d64257acf7786abf933dd095111" and "725cde218b360b6b70a3aa6c07cb3718fa4228ec" have entirely different histories.

4 changed files with 0 additions and 133 deletions

View File

@ -1,25 +0,0 @@
# A valid snippet should starts with:
#
# snippet trigger_word [ "description" [ options ] ]
#
# and end with:
#
# endsnippet
#
# Snippet options:
#
# b - Beginning of line.
# i - In-word expansion.
# w - Word boundary.
# r - Regular expression
# e - Custom context snippet
# A - Snippet will be triggered automatically, when condition matches.
#
# Basic example:
#
# snippet emitter "emitter properties" b
# private readonly ${1} = new Emitter<$2>()
# public readonly ${1/^_(.*)/$1/}: Event<$2> = this.$1.event
# endsnippet
#
# Online reference: https://github.com/SirVer/ultisnips/blob/master/doc/UltiSnips.txt

View File

@ -1,45 +0,0 @@
# A valid snippet should starts with:
#
# snippet trigger_word [ "description" [ options ] ]
#
# and end with:
#
# endsnippet
#
# Snippet options:
#
# b - Beginning of line.
# i - In-word expansion.
# w - Word boundary.
# r - Regular expression
# e - Custom context snippet
# A - Snippet will be triggered automatically, when condition matches.
#
# Basic example:
#
# snippet emitter "emitter properties" b
# private readonly ${1} = new Emitter<$2>()
# public readonly ${1/^_(.*)/$1/}: Event<$2> = this.$1.event
# endsnippet
#
# Online reference: https://github.com/SirVer/ultisnips/blob/master/doc/UltiSnips.txt
snippet index "Structure for an index file" b
${1:title}
${1/./#/g}
:date: ${2:`date +%Y-%m-%d`}
:modified: ${2}
:authors: Bertrand Benjamin
:category: ${3}
:summary: ${1}
endsnippet
snippet link "link" i
\`${1:link title} <${2:link target}>\`_
endsnippet
snippet img "Image" b
.. image:: ${1:filename}
:height: 200px
:alt: ${2:Description}
endsnippet

View File

@ -1,52 +0,0 @@
# A valid snippet should starts with:
#
# snippet trigger_word [ "description" [ options ] ]
#
# and end with:
#
# endsnippet
#
# Snippet options:
#
# b - Beginning of line.
# i - In-word expansion.
# w - Word boundary.
# r - Regular expression
# e - Custom context snippet
# A - Snippet will be triggered automatically, when condition matches.
#
# Basic example:
#
# snippet emitter "emitter properties" b
# private readonly ${1} = new Emitter<$2>()
# public readonly ${1/^_(.*)/$1/}: Event<$2> = this.$1.event
# endsnippet
#
# Online reference: https://github.com/SirVer/ultisnips/blob/master/doc/UltiSnips.txt
snippet signe "tableau de signes avec tikz"
\begin{tikzpicture}[baseline=(a.north)]
\tkzTabInit[lgt=2,espcl=2]{$ ${1:variable} $/1,$ ${2:function} $/2}{${3:start}, ${4:zeros}, ${5:end} }
\tkzTabLine{, ${6:signe and zeros} , }
\end{tikzpicture}
endsnippet
snippet varia "tableau de variations avec tikz"
\begin{tikzpicture}[baseline=(a.north)]
\tkzTabInit[lgt=3,espcl=3]{$ ${1:variable} $/1, $ ${2:fonction} $/2}{${3: valeurs notables} }
\tkzTabVar{ ${4:signe/element ou signe*2 /element G/ element D}}
\end{tikzpicture}
endsnippet
snippet graph "Graphique avec tikz" b
\begin{tikzpicture}[baseline=(a.north), xscale=1, yscale=1]
\tkzInit[xmin=-5,xmax=5,xstep=1,
ymin=-5,ymax=5,ystep=1]
\tkzGrid
\tkzAxeXY
\tkzFct[domain=-5:5,color=red,very thick]%
{ ${1:fonction} };
\end{tikzpicture}
endsnippet

View File

@ -168,14 +168,3 @@
group: "{{ item.group }}" group: "{{ item.group }}"
with_items: "{{ dotusers }}" with_items: "{{ dotusers }}"
when: not server when: not server
# coc snippets
- name: dotfiles -- Copying snippets
file:
src: files/dotfiles/ultisnips
dest: /home/{{ item.username }}/.config/coc/ultisnips
state: directory
owner: "{{ item.username }}"
group: "{{ item.group }}"
with_items: "{{ dotusers }}"
when: prompt == 'fish'