Files
dotfiles/config/nvim/snippets/html.snippets
Nick Nisi 316a7a662b update location of neovim config, update link.sh
* move ~/.nvim to ~/.config/nvim
* move ~/.nvimrc to ~/.config/nvim/init.vim
* update install/link.sh to skip already existing files
* update install/link.sh to handle creating symlinks for files in newly created config/ directory

These changes are consistent with the latest neovim install, which moves away from ~/.nvim and ~/.nvimrc
2015-10-29 20:25:36 -05:00

52 lines
1.4 KiB
Plaintext

snippet attach
data-dojo-attach-point="${1}"
snippet type
data-dojo-type="${1}"
snippet dtestcase
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.10.2/dijit/themes/claro/claro.css">
</head>
<body class="claro">
<div id="main"></div>
<script>
var dojoConfig = {
async: true,
isDebug: true,
packages: [
{ name: 'dgrid', location: '//cdn.rawgit.com/SitePen/dgrid/v0.3.16' },
{ name: 'xstyle', location:'//cdn.rawgit.com/kriszyp/xstyle/v0.2.1' },
{ name: 'put-selector', location: '//cdn.rawgit.com/kriszyp/put-selector/v0.3.5' }
]
};
</script>
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.10.2/dojo/dojo.js"></script>
<script>
${1}
</script>
</body>
</html>
snippet dsupport
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script data-dojo-config="async:1,isDebug:1" src="../../dojo/dojo.js"></script>
<script>
${1}
</script>
</body>
</html>
snippet viewport
<meta name="viewport" content="width=device-width, initial-scale=1.0">
snippet dojocdn
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.10.2/dojo/dojo.js"></script>
snippet clarocdn
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.10.2/dijit/themes/claro/claro.css">