1
0
nvim-config/UltiSnips/sh.snippets
valeth d6fcdb2060 add ultisnips plugin
add snippets in UltiSnips
add python modules in pythonx/ultisnips
2016-04-21 21:18:46 +02:00

13 lines
140 B
Plaintext

snippet bang "Shebang line for shellscripts" b
#!/usr/bin/env bash
endsnippet
snippet fun "Shell function" b
function $1
{
}
endsnippet