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
2018-09-24 21:40:17 -03:00
parent 6bd9eda8c3
commit a6b64938eb
199 changed files with 2897 additions and 980 deletions

View File

@ -0,0 +1,39 @@
snippet doc
(*
${0}
*)
snippet let
let ${1} = ${2} in
${0}
snippet fn
let ${1} =
${0}
snippet fun
type ${1} = ${0}
snippet mod
module ${1} = struct
${0}
end
snippet modty
module type ${1} = sig
${0}
end
snippet sw
match ${1} with
| ${2} -> ${0}
snippet |
| ${1} -> ${0}
snippet p
|> ${0}
snippet if
if ${1} then
${2}
else
${0}
snippet fnr
let rec ${1} =
${0}
snippet try
try
${1}
with ${0}