added nvim coc config files minus node modules

This commit is contained in:
tomit4 2021-09-25 02:14:00 -07:00
parent baac0fdd4f
commit fc51cf5a4a
19405 changed files with 6211125 additions and 0 deletions

View file

@ -0,0 +1,29 @@
# 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 cl "console.log()" b
console.log($1)
endsnippet