-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.default.yml
132 lines (114 loc) · 3.76 KB
/
config.default.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
---
# https://github.com/nvm-sh/nvm
nvm_version: 0.39.5
# Franz https://meetfranz.com/
franz_version: 5.10.0
apt_key:
- https://www.pgadmin.org/static/packages_pgadmin_org.pub
- https://apt.releases.hashicorp.com/gpg
- https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
- https://apt.fury.io/wez/gpg.key
apt_repos:
- ppa:solaar-unifying/stable
- ppa:cappelikan/ppa
- deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg] https://brave-browser-apt-release.s3.brave.com/ stable main
- deb [signed-by=/usr/share/keyrings/wezterm-fury.gpg] https://apt.fury.io/wez/ * *
apt_pkgs:
- apt-transport-https
- bash
- bash-completion
- build-essential
- curl
- docker
- pgadmin4
- git
- gimp
- vim
- shellcheck # https://github.com/koalaman/shellcheck
- htop
- solaar # https://pwr-solaar.github.io/Solaar/
- firefox
- terraform
- mainline # https://github.com/bkw777/mainline
- unzip
- w3m
- tmux
- nmap
- iotop
- thunderbird
- silversearcher-ag # https://github.com/ggreer/the_silver_searcher (Required for https://github.com/junegunn/fzf.vim)
- exuberant-ctags # http://ctags.sourceforge.net/ Code navigation for neovim
- ubuntu-restricted-extras # configure the codecs necessary to play media files
- keepassxc # https://keepassxc.org/
- ncdu # Clean up disks
- terminator
- gnome-tweaks # https://gitlab.gnome.org/GNOME/gnome-tweaks
- jq
- libreoffice
- smartmontools # https://www.smartmontools.org/
- fzf # fuzzy finder for local scripts
- zsh # shell
- vagrant
- python3.10-venv # package for lazyvim and ansible lint mason package
- gparted
- lazygit # nvim dep
- fd-find # nvim dep
- ripgrep # nvim dep
- gnupg # gpg encryption
- brave-browser
- wezterm # https://wezfurlong.org/wezterm/
- luarocks # nvim setup and plugins
- lm-sensors # tmux gpu/cpu temperature
- yamllint
npm_glob_pkgs:
- tree-sitter-cli # nvim dep
- neovim # nvim dep
- yarn
- protondb-cli
snap_pkgs:
- discord
- fast # https://snapcraft.io/fast
- postman
- slack
- spotify
- teams
- telegram-desktop
- cacher # https://www.cacher.io/
- dbeaver-ce # https://dbeaver.io/
pip_pkgs:
- ansible-lint
- yamllint
- s3cmd
- docker
- boto
- boto3
- botocore
- molecule
- molecule-docker
- setuptools
- awslogs
nvm_url: https://raw.githubusercontent.com/nvm-sh/nvm/v{{ nvm_version }}/install.sh
awscli_url: https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip
zsh_url: https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh
neovim_url: https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz
deb_pkgs:
- name: franz
url: https://github.com/meetfranz/franz/releases/download/v{{ franz_version }}/franz_{{ franz_version }}_amd64.deb
- name: vscode
url: https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64
- name: zoom
url: https://zoom.us/client/latest/zoom_amd64.deb
- name: chrome
url: https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- name: steam
url: https://repo.steampowered.com/steam/archive/precise/steam_latest.deb
- name: virtualbox
url: https://download.virtualbox.org/virtualbox/7.0.10/virtualbox-7.0_7.0.10-158379~Ubuntu~jammy_amd64.deb
bash_alias_path: "{{ ansible_env.HOME }}/.bash_aliases"
bash_aliases:
- {alias: "sudo", command: "sudo"}
- {alias: "v", command: "nvim"}
- {alias: "aptlist", command: "apt list --upgradable"}
- {alias: "i", command: "ip -c -brie a"}
- {alias: "sz", command: "du /* -xhs --exclude=/proc | sort -hr"}
- {alias: "geffort", command: "git log --pretty=format: --since=\\\"1 year ago\\\" --name-only | sort | uniq -c | sort -rg | head -10"}