forked from carloscuesta/gitmoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
60 lines (55 loc) · 2.13 KB
/
.gitpod.yml
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
image: nberlette/gitpod-enhanced
tasks:
- init: pnpm install
command: pnpm dev
ports:
- port: "3000-5000"
onOpen: notify
visibility: public
github:
prebuilds:
branches: false
addLabel: true
addCheck: true
addBadge: true
gitConfig:
alias.bail: "reset HEAD --"
alias.graph: "!git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative"
alias.amend: "!git log -n 1 --pretty=tformat:%s%n%n%b | git commit -F - --amend"
alias.setup: "!git init && git add . && git commit -m 'Initial commit.'"
alias.nb: "!git branch | grep ^* | awk '{ print $2 }'"
alias.cleanup: "!git ls-files -z --deleted | xargs -0 git rm"
alias.addnew: "!git cleanup && git add . --all"
bash.showColorHints: "true" # colorizes git info based on branch/upstream status
bash.showUpstream: "auto" # false | auto verbose name git svn (accepts > 1)
bash.showUntrackedFiles: "false" # % added if untracked files are detected
bash.showStashState: "true" # $ added if stashed files are detected
bash.showDirtyState: "true" # * added if tracked files are modified
bash.hideIfPwdIgnored: "false" # hides git prompt if cwd is in .gitignore
color.ui: "auto"
color.branch.current: "yellow reverse"
color.branch.local: "yellow"
color.branch.remote: "green"
color.diff.meta: "yellow bold"
color.diff.frag: "magenta bold"
color.diff.old: "red bold"
color.diff.new: "green bold"
color.status.added: "yellow"
color.status.changed: "green"
color.status.untracked: "red"
init.defaultbranch: "main"
url.https://github.com/.insteadof: "gh:"
url.https://gist.github.com/.insteadof: "gist:"
url.https://gitlab.com/.insteadof: "gl:"
url.https://bitbucket.org/.insteadof: "bb:"
vscode:
extensions:
- eamodio.gitlens
- github.vscode-pull-request-github
- esbenp.prettier-vscode
- dbaeumer.vscode-eslint
- editorconfig.editorconfig
- davidanson.vscode-markdownlint
- christian-kohler.path-intellisense
- christian-kohler.npm-intellisense
- eg2.vscode-npm-script