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

12
UltiSnips/xhtml.snippets Normal file
View File

@@ -0,0 +1,12 @@
snippet xhtml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ops="http://www.idpf.org/2007/ops" xml:lang="en">
<head>
<title>${1:title}</title>
<link href="css/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
${2:end}
</body>
</head>