File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Example: https://github.com/codespaces-examples/node
12FROM ubuntu:latest
23
34ENV USER_NAME=tomy0000000
@@ -23,14 +24,11 @@ USER $USER_NAME
2324# Set the working directory
2425WORKDIR /home/$USER_NAME/.dotfiles
2526
26- # Copy all dotfiles
27- COPY --chown=$USER_NAME:$USER_NAME . .
27+ # Clone the latest dotfiles
28+ RUN bash -c "$(curl -fsSL https://init.tomy.tech)"
2829
2930# Install default targets
3031RUN make all
3132
3233# Install Shell
3334RUN make ubuntu-zsh
34-
35- # Start shell
36- CMD ["zsh" ]
Original file line number Diff line number Diff line change 1- # Title (50 chars)
2- # <type>[optional scope]: <description>
3- #
4- # Add a ! after type is this is a BREAKING CHANGE.
5- #
6- # 🧹 chore:
7- # ⌛️ ci:
8- # 📖 docs:
9- # 🌟 feat:
10- # 🛠 fix:
11- # 🏎 perf:
12- # ❇️ refactor:
13- # 💅🏻 style:
14- # 🧪 test:
15- ##################################################
16- #
17- # Body (Optional)
18- #
1+ // Title (50 chars)
2+ // [type][optional scope] <description>
3+ //
4+ // Add a ! before type is this is a BREAKING CHANGE.
5+ //
6+ // 🧹 [chore][]
7+ // ⌛️ [ci][]
8+ // 📖 [docs][]
9+ // 🌟 [feat][]
10+ // 🛠 [fix][]
11+ // 🏎 [perf][]
12+ // ❇️ [refactor][]
13+ // 💅🏻 [style][]
14+ // 🧪 [test][]
1915
20- #
21- # Co-authored-by: Tomy Hsieh <git@tomy.me>
22- # Co-authored-by:
23- #
24- # Footer (Optional)
25- # BREAKING CHANGE:
26- #
16+ //
17+ // Body (Optional)
18+ //
19+
20+ //
21+ // Co-authored-by: Tomy Hsieh <git@tomy.me>
22+ // Co-authored-by:
23+ //
24+ // Footer (Optional)
25+ // BREAKING CHANGE:
26+ //
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ template = "~/.dotfiles/pkg/git/.git_commit_template"
5959
6060[core ]
6161attributesFile = " ~/.dotfiles/pkg/git/.gitattributes"
62+ commentString = " //"
6263excludesFile = " ~/.dotfiles/pkg/git/.gitignore"
6364editor = " nano"
6465
You can’t perform that action at this time.
0 commit comments