1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Replaced snipmate with UltiSnips, changed default font to DejaVu Mono

This commit is contained in:
2013-03-23 18:19:23 +01:00
parent e5369406eb
commit 2af24011b1
10 changed files with 368 additions and 5 deletions

25
UltiSnips/all.snippets Normal file
View File

@@ -0,0 +1,25 @@
snippet date "Current date"
`!v strftime("%Y-%m-%d")`
endsnippet
snippet datetime "Current datetime"
`!v strftime("%Y-%m-%d %H:%M:%S")`
endsnippet
snippet - "a dash, used for concatenating words"
endsnippet
snippet ~ "shy, used for hyphenation hints"
­
endsnippet
snippet fn "filename"
`!v expand("%")`
endsnippet
snippet fp "full path filename"
`!v expand("%:p")`
endsnippet
# vim:ft=snippets: