1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

Updated plugins

This commit is contained in:
Amir Salihefendic
2019-11-16 16:28:42 +01:00
parent 96e10ed101
commit 72bdaba47e
204 changed files with 5936 additions and 1666 deletions

View File

@ -19,16 +19,17 @@ snippet -
${0}
#some directive
snippet img:
.. |${0:alias}| image:: ${1:img}
.. |${1:alias}| image:: ${0:img}
snippet fig:
.. figure:: ${1:img}
:alt: ${0:alter text}
:alt: ${2:alter text}
$0
snippet con:
.. contents:: ${1:Table of Contents}
$2
snippet cont:
.. contents::
${0:content}
snippet code:
snippet cod:
.. code:: ${1:type}
${0:write some code}
@ -65,34 +66,36 @@ snippet tod:
.. todo::
${0}
snippet lis:
.. list-table:: ${0:Title}
.. list-table:: ${1:Title}
:header-rows: 1
:stub-columns: 1
:stub-columns: 0
* - x1,y1
- x2,y1
- x3,y1
* - x1,y2
- x2,y2
- x3,y2
* - x1,y3
- x2,y3
- x3,y3
* - ${0:R1C1}
- R1C2
* - R2C1
- R2C2
snippet csv:
.. csv-table:: ${1:Title}
:header-rows: 1
:stub-columns: 0
${0:R1C1}, R1C2
R2C1, R2C2
snippet toc:
.. toctree::
:maxdepth: 2
${0}
snippet dow:
:download:\`${0:text} <${1:path}>\`
:download:\`${1:text} <${0:path}>\`
snippet ref:
:ref:\`${0:text} <${1:path}>\`
:ref:\`${1:text} <${0:path}>\`
snippet doc:
:doc:`${0:text} <${1:path}>`
:doc:\`${1:text} <${0:path}>\`
# CJK optimize, CJK has no space between charaters
snippet *c
\ *${1:Emphasis}*\ ${0}
snippet **c
\ **${1:Strong emphasis}**\ ${0}
# vim:set list noet sts=0 sw=4 ts=4: