In Sublime Text 3, when I create a new file (HTML, JavaScript, PHP, etc), is there a way to edit the default tags and their indentations? Currently, when I create a new file, say HTML, I get:
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
I would like to change it so that a new HTML file creates:
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
Is this possible without plugins or will I have to search for/make one?