summaryrefslogtreecommitdiff
path: root/misc/dotfiles/templates
diff options
context:
space:
mode:
authorDmitry Ilvokhin <d@ilvokhin.com>2024-02-24 18:36:32 +0000
committerDmitry Ilvokhin <d@ilvokhin.com>2024-02-24 18:36:32 +0000
commit2b29e812468ae2f33a4d37e2e280b7080f11ee86 (patch)
tree15826a929d63c05081399d970e8caaf6d0ecdc23 /misc/dotfiles/templates
parent505d0e3202677729f9c5a9c03cb5ddfd9faf6d78 (diff)
downloadinfra-2b29e812468ae2f33a4d37e2e280b7080f11ee86.tar.gz
infra-2b29e812468ae2f33a4d37e2e280b7080f11ee86.tar.bz2
infra-2b29e812468ae2f33a4d37e2e280b7080f11ee86.zip
Add simple dotfiles management playbook
Diffstat (limited to 'misc/dotfiles/templates')
-rw-r--r--misc/dotfiles/templates/template.cpp23
-rw-r--r--misc/dotfiles/templates/template.py10
2 files changed, 33 insertions, 0 deletions
diff --git a/misc/dotfiles/templates/template.cpp b/misc/dotfiles/templates/template.cpp
new file mode 100644
index 0000000..16f3e15
--- /dev/null
+++ b/misc/dotfiles/templates/template.cpp
@@ -0,0 +1,23 @@
+#include <algorithm>
+#include <iterator>
+#include <iostream>
+#include <iomanip>
+#include <cassert>
+#include <utility>
+#include <string>
+#include <vector>
+#include <limits>
+#include <queue>
+#include <cmath>
+#include <map>
+#include <set>
+
+using namespace std;
+
+using ll = long long;
+
+int main()
+{
+
+ return 0;
+}
diff --git a/misc/dotfiles/templates/template.py b/misc/dotfiles/templates/template.py
new file mode 100644
index 0000000..e35598b
--- /dev/null
+++ b/misc/dotfiles/templates/template.py
@@ -0,0 +1,10 @@
+#! /usr/bin/env python3
+# -*- coding: utf-8 -*
+
+
+def main():
+ pass
+
+
+if __name__ == "__main__":
+ main()