-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.yml
55 lines (50 loc) · 1.16 KB
/
configuration.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
---
packages:
- curl
- flatpak
- git
- gpg
- htop
- jq
- vim
- wget
- yakuake
flatpaks:
- com.bitwarden.desktop
- org.flameshot.Flameshot
- org.gnome.Extensions
- org.mozilla.Thunderbird
- org.signal.Signal
- com.spotify.Client
# TODO: generate or import ssh keys and combine both
ssh_rsa:
create: false
password: "<password>"
comment: "<comment>"
ssh_ed25519:
create: false
password: "<password>"
comment: "<comment>"
bashrc:
enabled: true
additional_content: |
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
export PS1='\[\e[0;1;38;5;34m\]\u\[\e[0;1;38;5;34m\]@\[\e[0;1;38;5;34m\]\h\[\e[0;1m\]:\[\e[0;1;38;5;33m\]\w \[\e[0;91m\]$(parse_git_branch)\[\e[0m\]\$ \[\e[0m\]'
source <(kubectl completion bash)
alias k=kubectl
complete -o default -F __start_kubectl k
git_config:
- setting: "user.name"
scope: "global"
value: "$full_name"
- setting: "user.email"
scope: "global"
value: "$email"
- setting: "pull.rebase"
scope: "global"
value: "false" # set to merge
- setting: "push.autoSetupRemote"
scope: "global"
value: "true"