add skeleton files
This commit is contained in:
parent
516d7d86c5
commit
da5ffe4a98
7
files/vim/.vim/skel/bash
Normal file
7
files/vim/.vim/skel/bash
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
main() {
|
||||
echo "Hello World"
|
||||
}
|
||||
|
||||
main
|
||||
17
files/vim/.vim/skel/html
Normal file
17
files/vim/.vim/skel/html
Normal file
@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
|
||||
<title>Hello World</title>
|
||||
<link rel="stylesheet" href="css/main.css" />
|
||||
<link rel="icon" href="images/favicon.png" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Hello World</h1>
|
||||
<script src="js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
8
files/vim/.vim/skel/python
Normal file
8
files/vim/.vim/skel/python
Normal file
@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
|
||||
def main():
|
||||
print("Hello World")
|
||||
|
||||
|
||||
main()
|
||||
9
files/vim/.vim/skel/python-flask
Normal file
9
files/vim/.vim/skel/python-flask
Normal file
@ -0,0 +1,9 @@
|
||||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
|
||||
@app.route('/')
|
||||
@app.route('/index')
|
||||
def index():
|
||||
return "Hello, World!"
|
||||
Loading…
x
Reference in New Issue
Block a user