-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.toml
91 lines (77 loc) · 1.64 KB
/
configuration.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
create = true
update = true
language_strict = true
locale = "fr"
[data]
author = "Vincent Berthier"
author_mail = "[email protected]"
cp_holders = "Vincent Berthier"
[default]
name = "*"
prefix = "# "
before = []
after = [""]
template = """
File: #file_relative_path
Project: #project_name
Creation date: #file_creation
Author: #author_name #author_mail
-----
Last modified: #date_now
Modified by: #author_name
-----
#copyright_notice"""
copyright_notice = "Copyright © #cp_year #cp_holders - All rights reserved"
track_changes = ["File: ", "Last modified: ", "Modified by: ", "Copyright "]
[[language]]
name = "bash"
before = ["#!/usr/bin/env bash", ""]
[[language]]
name = "python"
before = ["#!/usr/bin/env python3", ""]
[[language]]
name = "lua"
prefix = "-- "
[[language]]
name = "cpp"
prefix = "// "
[[language]]
name = "rust"
prefix = "// "
[[project]]
root = "/home/vincent/code"
[[project]]
root = "/home/vincent/code/athena_crucible"
name = "Athena’s Crucible"
[[project]]
root = "/home/vincent/code/auto-header.nvim/"
create = false
locale = "en"
[project.data]
copyright_notice = "#MIT"
author_mail = ""
[[project]]
root = "/home/vincent/code/auto-header.rs/"
create = false
locale = "en"
[project.data]
copyright_notice = "#MIT"
author_mail = ""
[[project]]
root = "/home/vincent/code/orpailleur"
name = "Orpailleur"
[project.data]
author_mail = "[email protected]"
[[project]]
root = "/home/vincent/code/helix"
locale = "en"
create = false
update = false
[[project]]
root = "/home/vincent/code/bangk"
locale = "fr"
create = true
update = true
[project.data]
author_mail = "[email protected]"
cp_holders = "Bangk"