@sebastienrousseau/dotfiles 0.2.440 → 0.2.452

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (163) hide show
  1. package/COPYRIGHT +5 -0
  2. package/LICENSE +1260 -2
  3. package/Makefile +79 -0
  4. package/README.md +328 -71
  5. package/bin/dotfiles.sh +150 -0
  6. package/index.js +24 -0
  7. package/package.json +99 -25
  8. package/pnpm-lock.yaml +178 -0
  9. package/pnpm-workspace.yaml +2 -0
  10. package/shell/README.md +3 -0
  11. package/shell/aliases/README.md +327 -0
  12. package/{Icon/r → shell/aliases/default/README.md} +0 -0
  13. package/shell/aliases/default/default.aliases.sh +199 -0
  14. package/shell/aliases/gcloud/README.md +117 -0
  15. package/shell/aliases/gcloud/gcloud.aliases.sh +121 -0
  16. package/shell/aliases/git/README.md +279 -0
  17. package/shell/aliases/git/git.aliases.wip +586 -0
  18. package/shell/aliases/heroku/README.md +457 -0
  19. package/shell/aliases/heroku/heroku.aliases.sh +1031 -0
  20. package/shell/aliases/jekyll/README.md +32 -0
  21. package/shell/aliases/jekyll/jekyll.aliases.sh +50 -0
  22. package/shell/aliases/pnpm/README.md +3 -0
  23. package/shell/aliases/pnpm/pnpm.aliases.sh +42 -0
  24. package/shell/aliases/subversion/README.md +54 -0
  25. package/shell/aliases/subversion/subversion.aliases.sh +123 -0
  26. package/shell/aliases/tmux/README.md +0 -0
  27. package/shell/aliases/tmux/tmux.aliases.sh +14 -0
  28. package/shell/aliases.sh +12 -0
  29. package/shell/configurations/README.md +3 -0
  30. package/shell/configurations/bash/bashrc +36 -0
  31. package/shell/configurations/curl/cacert.pem +3460 -0
  32. package/shell/configurations/curl/curlrc +55 -0
  33. package/shell/configurations/default/color.sh +17 -0
  34. package/shell/configurations/default/editor.sh +16 -0
  35. package/shell/configurations/default/prompt.sh +37 -0
  36. package/shell/configurations/inputrc/inputrc +22 -0
  37. package/shell/configurations/jshint/jshintrc +37 -0
  38. package/shell/configurations/profile/profile +36 -0
  39. package/shell/configurations/tmux/tmux +95 -0
  40. package/shell/configurations/vim/vimrc +73 -0
  41. package/{.wgetrc → shell/configurations/wget/wgetrc} +4 -0
  42. package/shell/configurations/zsh/zshrc +40 -0
  43. package/shell/configurations.sh +10 -0
  44. package/shell/exit.sh +9 -0
  45. package/shell/functions/README.md +3 -0
  46. package/shell/functions/cdls.sh +19 -0
  47. package/shell/functions/changediskpwd.sh +19 -0
  48. package/shell/functions/code.sh +18 -0
  49. package/shell/functions/countdown.sh +33 -0
  50. package/shell/functions/curlheader.sh +20 -0
  51. package/shell/functions/curltime.sh +31 -0
  52. package/shell/functions/encode64.sh +25 -0
  53. package/shell/functions/environment.sh +37 -0
  54. package/shell/functions/extract.sh +32 -0
  55. package/shell/functions/filehead.sh +4 -0
  56. package/{zsh/zsh/functions/genpwd.zsh → shell/functions/genpwd.sh} +8 -3
  57. package/shell/functions/goto.sh +14 -0
  58. package/shell/functions/headers.sh +4 -0
  59. package/{zsh/zsh/functions/hidehiddenfiles.zsh → shell/functions/hidehiddenfiles.sh} +7 -2
  60. package/shell/functions/history-all.sh +7 -0
  61. package/shell/functions/hostinfo.sh +25 -0
  62. package/{zsh/zsh/functions/hstats.zsh → shell/functions/hstats.sh} +6 -1
  63. package/shell/functions/httpdebug.sh +7 -0
  64. package/shell/functions/keygen.sh +23 -0
  65. package/shell/functions/last.sh +9 -0
  66. package/shell/functions/logout.sh +10 -0
  67. package/shell/functions/lowercase.sh +28 -0
  68. package/shell/functions/macos.sh +47 -0
  69. package/shell/functions/matrix.sh +9 -0
  70. package/shell/functions/mcd.sh +18 -0
  71. package/shell/functions/mount_read_only.sh +9 -0
  72. package/shell/functions/myproc.sh +7 -0
  73. package/shell/functions/prependpath.sh +19 -0
  74. package/shell/functions/print.sh +13 -0
  75. package/shell/functions/ql.sh +7 -0
  76. package/shell/functions/rd.sh +15 -0
  77. package/shell/functions/remove_disk.sh +9 -0
  78. package/shell/functions/ren.sh +11 -0
  79. package/shell/functions/rm.sh +13 -0
  80. package/shell/functions/rps.sh +103 -0
  81. package/{zsh/zsh/functions/showhiddenfiles.zsh → shell/functions/showhiddenfiles.sh} +7 -2
  82. package/{zsh/zsh/functions/size.zsh → shell/functions/size.sh} +6 -1
  83. package/shell/functions/stopwatch.sh +13 -0
  84. package/shell/functions/trash.sh +13 -0
  85. package/shell/functions/tree.sh +13 -0
  86. package/shell/functions/uppercase.sh +28 -0
  87. package/shell/functions/uuidgen.sh +27 -0
  88. package/shell/functions/view-source.sh +8 -0
  89. package/shell/functions/vscode.sh +31 -0
  90. package/shell/functions/whoisport.sh +12 -0
  91. package/shell/functions/zipf.sh +14 -0
  92. package/shell/functions.sh +10 -0
  93. package/shell/history.sh +110 -0
  94. package/shell/paths/ant/ant.paths.sh +15 -0
  95. package/shell/paths/default/default.paths.sh +17 -0
  96. package/shell/paths/homebrew/homebrew.paths.sh +22 -0
  97. package/shell/paths/java/java.paths.sh +16 -0
  98. package/shell/paths/maven/maven.paths.sh +16 -0
  99. package/shell/paths/node/node.paths.sh +13 -0
  100. package/shell/paths/nvm/nvm.paths.sh +21 -0
  101. package/shell/paths/pnpm/pnpm.paths.sh +13 -0
  102. package/shell/paths/ruby/ruby.paths.sh +23 -0
  103. package/shell/paths/tmux/tmux.paths.sh +15 -0
  104. package/shell/paths.sh +12 -0
  105. package/.curlrc +0 -17
  106. package/.eslintrc +0 -44
  107. package/.jshintrc +0 -22
  108. package/.travis.yml +0 -21
  109. package/CODE_OF_CONDUCT.md +0 -46
  110. package/CONTRIBUTING.md +0 -60
  111. package/Dotfiles.png +0 -0
  112. package/ISSUE_TEMPLATE.md +0 -43
  113. package/bash/.bash_aliases +0 -409
  114. package/bash/.bash_exit +0 -25
  115. package/bash/.bash_functions +0 -312
  116. package/bash/.bash_load_completion +0 -62
  117. package/bash/.bash_profile +0 -295
  118. package/bash/.bashrc +0 -47
  119. package/homebrew/brew-cask.sh +0 -165
  120. package/homebrew/brew-package.sh +0 -256
  121. package/homebrew/brew-tap.sh +0 -35
  122. package/homebrew/install.sh +0 -29
  123. package/zsh/.zshrc +0 -64
  124. package/zsh/aliases.zsh +0 -427
  125. package/zsh/configurations.zsh +0 -19
  126. package/zsh/exit.zsh +0 -21
  127. package/zsh/functions.zsh +0 -42
  128. package/zsh/history.zsh +0 -53
  129. package/zsh/profile.zsh +0 -17
  130. package/zsh/zsh/configurations/color.zsh +0 -21
  131. package/zsh/zsh/configurations/editor.zsh +0 -21
  132. package/zsh/zsh/configurations/history.zsh +0 -53
  133. package/zsh/zsh/configurations/path.zsh +0 -123
  134. package/zsh/zsh/configurations/prompt.zsh +0 -24
  135. package/zsh/zsh/functions/cd.zsh +0 -51
  136. package/zsh/zsh/functions/cdls.zsh +0 -11
  137. package/zsh/zsh/functions/changediskpwd.zsh +0 -4
  138. package/zsh/zsh/functions/code.zsh +0 -2
  139. package/zsh/zsh/functions/countdown.zsh +0 -33
  140. package/zsh/zsh/functions/curlheader.zsh +0 -12
  141. package/zsh/zsh/functions/curltime.zsh +0 -12
  142. package/zsh/zsh/functions/extract.zsh +0 -27
  143. package/zsh/zsh/functions/goto.zsh +0 -8
  144. package/zsh/zsh/functions/history-all.zsh +0 -2
  145. package/zsh/zsh/functions/hostinfo.zsh +0 -19
  146. package/zsh/zsh/functions/httpdebug.zsh +0 -2
  147. package/zsh/zsh/functions/keygen.zsh +0 -18
  148. package/zsh/zsh/functions/logout.zsh +0 -5
  149. package/zsh/zsh/functions/lowercase.zsh +0 -23
  150. package/zsh/zsh/functions/matrix.zsh +0 -4
  151. package/zsh/zsh/functions/mcd.zsh +0 -11
  152. package/zsh/zsh/functions/mount_read_only.zsh +0 -4
  153. package/zsh/zsh/functions/myproc.zsh +0 -2
  154. package/zsh/zsh/functions/print.zsh +0 -8
  155. package/zsh/zsh/functions/ql.zsh +0 -2
  156. package/zsh/zsh/functions/rd.zsh +0 -8
  157. package/zsh/zsh/functions/remove_disk.zsh +0 -4
  158. package/zsh/zsh/functions/rm.zsh +0 -10
  159. package/zsh/zsh/functions/stopwatch.zsh +0 -8
  160. package/zsh/zsh/functions/trash.zsh +0 -8
  161. package/zsh/zsh/functions/tree.zsh +0 -8
  162. package/zsh/zsh/functions/uppercase.zsh +0 -23
  163. package/zsh/zsh/functions/zipf.zsh +0 -9
package/bash/.bashrc DELETED
@@ -1,47 +0,0 @@
1
- #!/bin/bash -l
2
-
3
- # ---------------------------------------------------------------------------
4
- #
5
- # ______ _ ______ _ _
6
- # | _ \ | | | ___(_) |
7
- # | | | |___ | |_| |_ _| | ___ ___
8
- # | | | / _ \| __| _| | | |/ _ \/ __|
9
- # | |/ / (_) | |_| | | | | __/\__ \
10
- # |___/ \___/ \__\_| |_|_|\___||___/
11
- #
12
- # Description: Add these lines to your .bashrc for aliases and functions
13
- #
14
- # ---------------------------------------------------------------------------
15
-
16
- # Don't enable any fancy or breaking features if the shell session is non-interactive
17
- if [[ $- != *i* ]] ; then
18
- return
19
- fi
20
-
21
- # Source the .bash_aliases file.
22
- if [[ -f ~/.bash_aliases ]] ; then
23
- # File may not exist, so don't follow for shellcheck linting (SC1090).
24
- # shellcheck source=/dev/null
25
- source "$HOME/.bash_aliases"
26
- fi
27
-
28
- # Source the .bash_load_completion file.
29
- if [[ -f ~/.bash_load_completion ]]; then
30
- # File may not exist, so don't follow for shellcheck linting (SC1090).
31
- # shellcheck source=/dev/null
32
- source "$HOME/.bash_load_completion"
33
- fi
34
-
35
- # Source the .bash_functions file.
36
- if [[ -f ~/.bash_functions ]]; then
37
- # File may not exist, so don't follow for shellcheck linting (SC1090).
38
- # shellcheck source=/dev/null
39
- source "$HOME/.bash_functions"
40
- fi
41
-
42
- # Source the .bash_exit file.
43
- if [[ -f ~/.bash_exit ]]; then
44
- # File may not exist, so don't follow for shellcheck linting (SC1090).
45
- # shellcheck source=/dev/null
46
- source "$HOME/.bash_exit"
47
- fi
@@ -1,165 +0,0 @@
1
- #!/bin/sh
2
-
3
- # ---------------------------------------------------------------------------
4
- #
5
- # ______ _ ______ _ _
6
- # | _ \ | | | ___(_) |
7
- # | | | |___ | |_| |_ _| | ___ ___
8
- # | | | / _ \| __| _| | | |/ _ \/ __|
9
- # | |/ / (_) | |_| | | | | __/\__ \
10
- # |___/ \___/ \__\_| |_|_|\___||___/
11
- #
12
- # Description: Install Homebrew Casks with Homebrew
13
- # Homebrew-Cask extends Homebrew and brings its elegance,
14
- # simplicity, and speed to macOS applications and large binaries alike.
15
- #
16
- # ---------------------------------------------------------------------------
17
-
18
-
19
- # ---------------------------------------------------------------------------
20
- # Get Homebrew-Cask by running the following command:
21
- #
22
- # brew tap caskroom/cask
23
- #
24
- # ---------------------------------------------------------------------------
25
-
26
-
27
- # ---------------------------------------------------------------------------
28
- # To update and maintain your cask just run:
29
- #
30
- # brew update && brew upgrade brew-cask && brew cleanup && brew cask cleanup
31
- #
32
- # ---------------------------------------------------------------------------
33
-
34
- # ---------------------------------------------------------------------------
35
- # List of macOS applications
36
- # ---------------------------------------------------------------------------
37
- # brew cask install colorpicker ## removing, not found on install
38
- brew cask install a-better-finder-rename
39
- brew cask install adobe-creative-cloud
40
- brew cask install alfred
41
- brew cask install amazon-drive
42
- brew cask install amazon-music
43
- brew cask install android-sdk
44
- brew cask install android-studio
45
- brew cask install androidtool
46
- brew cask install anvil
47
- brew cask install appcleaner
48
- brew cask install appcode
49
- brew cask install applepi-baker
50
- brew cask install arq
51
- brew cask install atom
52
- brew cask install bartender
53
- brew cask install bettertouchtool
54
- brew cask install betterzip
55
- brew cask install brackets
56
- brew cask install brave
57
- brew cask install buildit-base-tools
58
- brew cask install caffeine
59
- brew cask install cakebrew
60
- brew cask install carbon-copy-cloner
61
- brew cask install charles
62
- brew cask install cheatsheet
63
- brew cask install chefdk
64
- brew cask install cleanmymac
65
- brew cask install cocoapods-app
66
- brew cask install codekit
67
- brew cask install colorsnapper
68
- brew cask install coteditor
69
- brew cask install docker
70
- brew cask install docker-toolbox
71
- brew cask install dropbox
72
- brew cask install evernote
73
- brew cask install firefox
74
- brew cask install flickr-uploadr
75
- brew cask install fluid
76
- brew cask install flux
77
- brew cask install gas-mask
78
- brew cask install gemini
79
- brew cask install genymotion
80
- brew cask install gitbook-editor
81
- brew cask install gitbox
82
- brew cask install github-desktop
83
- brew cask install gitkraken
84
- brew cask install glyphs
85
- brew cask install go2shell
86
- brew cask install google-chrome
87
- brew cask install google-cloud-sdk
88
- brew cask install google-hangouts
89
- brew cask install google-notifier
90
- brew cask install googleappengine
91
- brew cask install grandperspective
92
- brew cask install hipchat
93
- brew cask install hopper-disassembler
94
- brew cask install imagealpha
95
- brew cask install imageoptim
96
- brew cask install inkscape
97
- brew cask install ios-console
98
- brew cask install istat-menus
99
- brew cask install iterm2
100
- brew cask install itsycal
101
- brew cask install joinme
102
- brew cask install kaleidoscope
103
- brew cask install keka
104
- brew cask install kindle
105
- brew cask install lastpass
106
- brew cask install liteicon
107
- brew cask install little-snitch
108
- brew cask install livereload
109
- brew cask install macdown
110
- brew cask install ngrok
111
- brew cask install omnigraffle
112
- brew cask install omniplan
113
- brew cask install opera
114
- brew cask install osxfuse
115
- brew cask install parallels-desktop
116
- brew cask install qlcolorcode
117
- brew cask install qlimagesize
118
- brew cask install qlmarkdown
119
- brew cask install qlprettypatch
120
- brew cask install qlstephen
121
- brew cask install qlvideo
122
- brew cask install quicklook-csv
123
- brew cask install quicklook-json
124
- brew cask install quicklookase
125
- brew cask install rescuetime
126
- brew cask install screenflick
127
- brew cask install sequel-pro
128
- brew cask install shiori
129
- brew cask install sidestep
130
- brew cask install sketch
131
- brew cask install skitch
132
- brew cask install skype
133
- brew cask install slack
134
- brew cask install smcfancontrol
135
- brew cask install sonos
136
- brew cask install spectacle
137
- brew cask install spotify
138
- brew cask install spotify-notifications
139
- brew cask install steam
140
- brew cask install sublime-text
141
- brew cask install suspicious-package
142
- brew cask install the-unarchiver
143
- brew cask install tower
144
- brew cask install transmit
145
- brew cask install tunnelblick
146
- brew cask install vagrant
147
- brew cask install vagrant-manager
148
- brew cask install versions
149
- brew cask install virtualbox
150
- brew cask install virtualbox-extension-pack
151
- brew cask install visual-studio-code
152
- brew cask install vlc
153
- brew cask install webpquicklook
154
- brew cask install webstorm
155
- brew cask install whiskey
156
- brew cask install xmind
157
- brew cask install xquartz
158
- brew cask install xscope
159
- brew cask install xtrafinder
160
-
161
-
162
- # ---------------------------------------------------------------------------
163
- # Remove outdated versions
164
- # ---------------------------------------------------------------------------
165
- brew cleanup
@@ -1,256 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- # ---------------------------------------------------------------------------
4
- #
5
- # ______ _ ______ _ _
6
- # | _ \ | | | ___(_) |
7
- # | | | |___ | |_| |_ _| | ___ ___
8
- # | | | / _ \| __| _| | | |/ _ \/ __|
9
- # | |/ / (_) | |_| | | | | __/\__ \
10
- # |___/ \___/ \__\_| |_|_|\___||___/
11
- #
12
- # Description: Install Packages with Homebrew for OS X
13
- #
14
- # ---------------------------------------------------------------------------
15
-
16
-
17
- # ---------------------------------------------------------------------------
18
- # Make sure we’re using the latest Homebrew.
19
- # ---------------------------------------------------------------------------
20
- brew update
21
-
22
-
23
- # ---------------------------------------------------------------------------
24
- # Upgrade any already-installed formulae.
25
- # ---------------------------------------------------------------------------
26
- brew upgrade
27
-
28
-
29
- # ---------------------------------------------------------------------------
30
- # Many of the binaries require Java so to avoid errors and warning Java
31
- # is being installed first
32
- # ---------------------------------------------------------------------------
33
- brew cask install java ## Java 10
34
- brew cask install java8
35
- brew cask install java9
36
-
37
-
38
- # ---------------------------------------------------------------------------
39
- # Add binaries
40
- # ---------------------------------------------------------------------------
41
- #brew install bash-completion@2 ## Further setup required. see .bash_completion file
42
- brew install ack
43
- brew install adns
44
- brew install aircrack-ng
45
- brew install ansible
46
- brew install ant
47
- brew install apktool
48
- brew install autoconf
49
- brew install autojump
50
- brew install automake
51
- brew install awscli
52
- brew install axel
53
- brew install bash
54
- brew install bash-completion
55
- brew install bfg
56
- brew install binutils
57
- brew install binwalk
58
- brew install boost
59
- brew install boot2docker # Moved here (from alphabetical order for cleaner install)
60
- brew install cairo
61
- brew install calc
62
- brew install chromedriver
63
- brew install cifer
64
- brew install cmake
65
- brew install colordiff
66
- brew install coreutils
67
- brew install cowsay
68
- brew install cryptopp
69
- brew install cscope
70
- brew install ctags
71
- brew install curl
72
- brew install dark-mode
73
- brew install dash
74
- brew install dex2jar
75
- brew install direnv
76
- brew install dns2tcp
77
- brew install docker
78
- brew install docker-compose
79
- brew install docker-machine
80
- brew install dockutil
81
- brew install doxygen
82
- brew install emacs
83
- brew install ethereum
84
- brew install faac
85
- brew install fcrackzip
86
- brew install fdk-aac
87
- brew install ffmpeg
88
- brew install fftw
89
- brew install figlet
90
- brew install findutils
91
- brew install fish
92
- brew install fontconfig
93
- brew install foremost
94
- brew install freetype
95
- brew install gcc
96
- brew install gdbm
97
- brew install gdk-pixbuf
98
- brew install gettext
99
- brew install giflib
100
- brew install git
101
- brew install git-flow
102
- brew install glib
103
- brew install gmp
104
- brew install gnupg
105
- brew install gnutls
106
- brew install go
107
- brew install gobject-introspection
108
- brew install gradle
109
- brew install graphicsmagick
110
- brew install graphite2
111
- brew install harfbuzz
112
- brew install hashpump
113
- brew install heroku
114
- brew install highlight
115
- brew install htop
116
- brew install hub
117
- brew install hugo
118
- brew install hydra
119
- brew install icoutils
120
- brew install icu4c
121
- brew install imagemagick
122
- brew install ios-sim
123
- brew install isl
124
- brew install jasper
125
- brew install jemalloc
126
- brew install john
127
- brew install jpeg
128
- brew install knock
129
- brew install lame
130
- brew install libassuan
131
- brew install libav
132
- brew install libcroco
133
- brew install libdnet
134
- brew install libevent
135
- brew install libexif
136
- brew install libffi
137
- brew install libgcrypt
138
- brew install libgpg-error
139
- brew install libgsf
140
- brew install libidn2
141
- brew install libksba
142
- brew install libmemcached
143
- brew install libmpc
144
- brew install libogg
145
- brew install libpng
146
- brew install librsvg
147
- brew install libtasn1
148
- brew install libtermkey
149
- brew install libtiff
150
- brew install libtool
151
- brew install libunistring
152
- brew install libusb
153
- brew install libusb-compat
154
- brew install libuv
155
- brew install libvorbis
156
- brew install libvpx
157
- brew install libvterm
158
- brew install libxml2
159
- brew install libyaml
160
- brew install little-cms2
161
- brew install lolcat
162
- brew install lua
163
- brew install luajit
164
- brew install mas
165
- brew install maven
166
- brew install memcached
167
- brew install mongodb
168
- brew install mono
169
- brew install moreutils
170
- brew install mpfr
171
- brew install msgpack
172
- brew install mtr
173
- brew install mysql
174
- brew install neovim
175
- brew install netpbm
176
- brew install nettle
177
- brew install ninja
178
- brew install nmap
179
- brew install node
180
- brew install npth
181
- brew install ntfs-3g
182
- brew install openjpeg
183
- brew install openssl
184
- brew install openssl-osx-ca
185
- brew install openssl@1.1
186
- brew install optipng
187
- brew install opus
188
- brew install orc
189
- brew install ossp-uuid
190
- brew install p11-kit
191
- brew install p7zip
192
- brew install packer
193
- brew install pandoc
194
- brew install pango
195
- brew install parity
196
- brew install pcre
197
- brew install pcre2
198
- brew install perl
199
- brew install pinentry
200
- brew install pixman
201
- brew install pkg-config
202
- brew install pngcheck
203
- brew install poppler
204
- brew install postgresql
205
- brew install py2cairo
206
- brew install pyenv
207
- brew install pygobject3
208
- brew install python
209
- brew install python3
210
- brew install rbenv
211
- brew install rcm
212
- brew install readline
213
- brew install reattach-to-user-namespace
214
- brew install redis
215
- brew install ruby
216
- brew install ruby-build
217
- brew install shared-mime-info
218
- brew install shellcheck
219
- brew install siege
220
- brew install socat
221
- brew install solidity
222
- brew install sqlite
223
- brew install sqlmap
224
- brew install ssdeep
225
- brew install ssh-askpass
226
- brew install swagger-codegen
227
- brew install swiftlint
228
- brew install tcpflow
229
- brew install tcpreplay
230
- brew install terminal-notifier
231
- brew install terraform
232
- brew install the_silver_searcher
233
- brew install tmux
234
- brew install tomcat
235
- brew install trash
236
- brew install tree
237
- brew install ucspi-tcp
238
- brew install unar
239
- brew install unibilium
240
- brew install vim
241
- brew install vips
242
- brew install watch
243
- brew install webp
244
- brew install wget
245
- brew install x264
246
- brew install xvid
247
- brew install xz
248
- brew install yarn
249
- brew install youtube-dl
250
- brew install zsh
251
-
252
-
253
- # ---------------------------------------------------------------------------
254
- # Remove outdated versions
255
- # ---------------------------------------------------------------------------
256
- brew cleanup
@@ -1,35 +0,0 @@
1
- #!/bin/sh
2
-
3
- # ---------------------------------------------------------------------------
4
- #
5
- # ______ _ ______ _ _
6
- # | _ \ | | | ___(_) |
7
- # | | | |___ | |_| |_ _| | ___ ___
8
- # | | | / _ \| __| _| | | |/ _ \/ __|
9
- # | |/ / (_) | |_| | | | | __/\__ \
10
- # |___/ \___/ \__\_| |_|_|\___||___/
11
- #
12
- # Description: Install Homebrew Taps with Homebrew
13
- # Taps are external sources of Homebrew formulae and/or
14
- # external commands.
15
- #
16
- # ---------------------------------------------------------------------------
17
-
18
-
19
- # ---------------------------------------------------------------------------
20
- # Add Taps
21
- # ---------------------------------------------------------------------------
22
-
23
- brew tap 'buildit/buildit-setup' ## https://github.com/buildit/homebrew-buildit-setup
24
- brew tap 'buo/cask-upgrade' ## https://github.com/buo/homebrew-cask-upgrade
25
- brew tap 'caskroom/cask' ## https://caskroom.github.io/
26
- brew tap 'caskroom/drivers' ## https://github.com/caskroom/homebrew-drivers
27
- brew tap 'ethereum/ethereum' ## https://github.com/ethereum/homebrew-ethereum
28
- brew tap 'homebrew/bundle' ## https://github.com/Homebrew/homebrew-bundle
29
- brew tap 'homebrew/core' ## This is Default tap - not sure why its added - https://github.com/Homebrew/brew
30
- brew tap 'homebrew/services' ## https://github.com/Homebrew/homebrew-services
31
- brew tap 'neovim/neovim' ## https://github.com/neovim/homebrew-neovim
32
- brew tap 'theseal/ssh-askpass' ## https://github.com/theseal/ssh-askpass
33
- brew tap 'thoughtbot/formulae' ## https://github.com/thoughtbot/homebrew-formulae
34
- brew tap 'raggi/ale' ## limited info on whats availabl in tap - https://github.com/raggi/homebrew-ale
35
- brew tap 'caskroom/versions' ## https://github.com/caskroom/homebrew-versions
@@ -1,29 +0,0 @@
1
- #!/bin/sh
2
- #
3
- # Homebrew
4
- #
5
- # This installs some of the common dependencies needed (or at least desired)
6
- # using Homebrew.
7
-
8
- # Check for Homebrew presence
9
- if test ! "$(which brew)";
10
- then
11
- echo "🍺 Installing Homebrew"
12
-
13
- # Install Homebrew for each OS type
14
- os_type=$(uname)
15
- if [ "$os_type" = "Darwin" ];
16
- then
17
- ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
18
- elif [ "$os_type" = "Linux" ];
19
- then
20
- ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)"
21
- else
22
- echo "${os_type} is not supported" >&2
23
- exit 1
24
- fi
25
- else
26
- echo "🍺 Looks like Homebrew is already installed!"
27
- fi
28
-
29
- exit 0
package/zsh/.zshrc DELETED
@@ -1,64 +0,0 @@
1
- # ---------------------------------------------------------------------------
2
- #
3
- # ______ _ ______ _ _
4
- # | _ \ | | | ___(_) |
5
- # | | | |___ | |_| |_ _| | ___ ___
6
- # | | | / _ \| __| _| | | |/ _ \/ __|
7
- # | |/ / (_) | |_| | | | | __/\__ \
8
- # |___/ \___/ \__\_| |_|_|\___||___/
9
- #
10
- # Description: Add these lines to your .zshrc for aliases and functions
11
- #
12
- # ---------------------------------------------------------------------------
13
-
14
- # Enable colors in prompt
15
- autoload -Uz colors && colors
16
-
17
- # Enable command completion
18
- autoload -Uz compinit && compinit -u
19
-
20
-
21
- # Don't enable any fancy or breaking features if the shell session is non-interactive
22
- if [[ $- != *i* ]] ; then
23
- return
24
- fi
25
-
26
- # Fix array index for zsh
27
- if [ "$ZSH_NAME" = "zsh" ];then
28
- setopt localoptions ksharrays
29
- fi
30
-
31
- # Source the aliases.zsh file.
32
- if [[ -f ~/aliases.zsh ]] ; then
33
- # File may not exist, so don't follow for shellcheck linting (SC1090).
34
- # shellcheck source=/dev/null
35
- source "$HOME/aliases.zsh"
36
- fi
37
-
38
- # Source the configurations.zsh file.
39
- if [[ -f ~/configurations.zsh ]]; then
40
- # File may not exist, so don't follow for shellcheck linting (SC1090).
41
- # shellcheck source=/dev/null
42
- source "$HOME/configurations.zsh"
43
- fi
44
-
45
- # Source the profile.zsh file.
46
- if [[ -f ~/profile.zsh ]] ; then
47
- # File may not exist, so don't follow for shellcheck linting (SC1090).
48
- # shellcheck source=/dev/null
49
- source "$HOME/profile.zsh"
50
- fi
51
-
52
- # Source the functions.zsh file.
53
- if [[ -f ~/functions.zsh ]]; then
54
- # File may not exist, so don't follow for shellcheck linting (SC1090).
55
- # shellcheck source=/dev/null
56
- source "$HOME/functions.zsh"
57
- fi
58
-
59
- # Source the exit.zsh file.
60
- if [[ -f ~/exit.zsh ]]; then
61
- # File may not exist, so don't follow for shellcheck linting (SC1090).
62
- # shellcheck source=/dev/null
63
- source "$HOME/exit.zsh"
64
- fi