generated from gogolcorp/go-yave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sh
87 lines (80 loc) · 1.49 KB
/
config.sh
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
#!/bin/bash
export core__dotfiles_src=(
".gitconfig"
"aliases.sh"
"functions.sh"
"starship.toml"
"terminator.toml"
# ".zshrc"
# "vscode-settings.json"
)
export core__dotfiles_dist=(
".gitconfig"
".aliases"
".functions"
".config/starship.toml"
".config/terminator/config"
# ".zshrc"
# ".config/Code/User/settings.json"
)
export core__apt_packages=(
"apt-transport-https"
"build-essential"
"ca-certificates"
"curl"
"file"
"gcc"
"git"
"htop"
"make"
"procps"
"shellcheck"
"software-properties-common"
"tree"
"virtualbox"
"xclip"
"zsh"
)
export core__snap_packages=(
"code --classic"
"discord"
"gimp"
"kontena-lens --classic"
"slack"
"spotify"
"telegram-desktop"
"vlc"
)
export core__brew_formulaes=(
"thefuck"
)
export core__brew_k8s_formulaes=(
"kubectl"
"kubectx"
"kubeseal"
"helm"
)
export core__omz_plugins=(
"zsh-autosuggestions"
"zsh-completions"
"zsh-history-substring-search"
"zsh-syntax-highlighting"
)
export core__vscode_extensions=(
"ms-azuretools.vscode-docker"
"dracula-theme.theme-dracula"
"eamodio.gitlens"
"golang.go"
"HashiCorp.terraform"
"ms-kubernetes-tools.vscode-kubernetes-tools"
"ms-vsliveshare.vsliveshare"
"ms-vscode.makefile-tools"
"yzhang.markdown-all-in-one"
"PKief.material-icon-theme"
"ext install ahmadalli.vscode-nginx-conf"
"christian-kohler.path-intellisense"
"timonwong.shellcheck"
"rangav.vscode-thunder-client"
"WakaTime.vscode-wakatime"
"redhat.vscode-yaml"
)