@sebastienrousseau/dotfiles 0.2.440 → 0.2.453

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 (156) hide show
  1. package/COPYRIGHT +5 -0
  2. package/LICENSE +1260 -2
  3. package/Makefile +79 -0
  4. package/README.md +390 -70
  5. package/bin/dotfiles.sh +157 -0
  6. package/index.js +24 -0
  7. package/package.json +99 -25
  8. package/pnpm-lock.yaml +232 -0
  9. package/pnpm-workspace.yaml +2 -0
  10. package/shell/README.md +3 -0
  11. package/{Icon/r → shell/aliases/default/README.md} +0 -0
  12. package/shell/aliases/default/default.aliases.sh +199 -0
  13. package/shell/aliases/gcloud/gcloud.aliases.sh +121 -0
  14. package/shell/aliases/git/git.aliases.wip +586 -0
  15. package/shell/aliases/heroku/heroku.aliases.sh +1031 -0
  16. package/shell/aliases/jekyll/jekyll.aliases.sh +50 -0
  17. package/shell/aliases/pnpm/pnpm.aliases.sh +42 -0
  18. package/shell/aliases/subversion/subversion.aliases.sh +123 -0
  19. package/shell/aliases/tmux/tmux.aliases.sh +14 -0
  20. package/shell/aliases.sh +12 -0
  21. package/shell/configurations/README.md +3 -0
  22. package/shell/configurations/bash/bashrc +36 -0
  23. package/shell/configurations/curl/cacert.pem +3460 -0
  24. package/shell/configurations/curl/curlrc +55 -0
  25. package/shell/configurations/default/color.sh +17 -0
  26. package/shell/configurations/default/editor.sh +16 -0
  27. package/shell/configurations/default/prompt.sh +37 -0
  28. package/shell/configurations/inputrc/inputrc +22 -0
  29. package/shell/configurations/jshint/jshintrc +37 -0
  30. package/shell/configurations/profile/profile +36 -0
  31. package/shell/configurations/tmux/tmux +95 -0
  32. package/shell/configurations/vim/vimrc +73 -0
  33. package/{.wgetrc → shell/configurations/wget/wgetrc} +4 -0
  34. package/shell/configurations/zsh/zshrc +50 -0
  35. package/shell/configurations.sh +10 -0
  36. package/shell/exit.sh +9 -0
  37. package/shell/functions/README.md +3 -0
  38. package/shell/functions/cdls.sh +19 -0
  39. package/shell/functions/changediskpwd.wip +19 -0
  40. package/shell/functions/code.wip +18 -0
  41. package/shell/functions/countdown.wip +33 -0
  42. package/shell/functions/curlheader.sh +20 -0
  43. package/shell/functions/curltime.sh +31 -0
  44. package/shell/functions/encode64.sh +25 -0
  45. package/shell/functions/environment.sh +37 -0
  46. package/shell/functions/extract.sh +32 -0
  47. package/shell/functions/filehead.sh +4 -0
  48. package/{zsh/zsh/functions/genpwd.zsh → shell/functions/genpwd.sh} +8 -3
  49. package/shell/functions/goto.sh +14 -0
  50. package/shell/functions/headers.wip +4 -0
  51. package/{zsh/zsh/functions/hidehiddenfiles.zsh → shell/functions/hidehiddenfiles.sh} +7 -2
  52. package/shell/functions/history-all.wip +7 -0
  53. package/shell/functions/hostinfo.sh +25 -0
  54. package/{zsh/zsh/functions/hstats.zsh → shell/functions/hstats.sh} +6 -1
  55. package/shell/functions/httpdebug.sh +7 -0
  56. package/shell/functions/keygen.sh +23 -0
  57. package/shell/functions/last.sh +9 -0
  58. package/shell/functions/logout.sh +10 -0
  59. package/shell/functions/lowercase.sh +28 -0
  60. package/shell/functions/macos.sh +47 -0
  61. package/shell/functions/matrix.sh +9 -0
  62. package/shell/functions/mcd.sh +18 -0
  63. package/shell/functions/mount_read_only.sh +9 -0
  64. package/shell/functions/myproc.sh +7 -0
  65. package/shell/functions/prependpath.sh +19 -0
  66. package/shell/functions/print.wip +13 -0
  67. package/shell/functions/ql.sh +7 -0
  68. package/shell/functions/rd.sh +15 -0
  69. package/shell/functions/remove_disk.sh +9 -0
  70. package/shell/functions/ren.sh +11 -0
  71. package/shell/functions/rm.wip +13 -0
  72. package/shell/functions/rps.wip +103 -0
  73. package/{zsh/zsh/functions/showhiddenfiles.zsh → shell/functions/showhiddenfiles.sh} +7 -2
  74. package/{zsh/zsh/functions/size.zsh → shell/functions/size.sh} +6 -1
  75. package/shell/functions/stopwatch.sh +13 -0
  76. package/shell/functions/trash.wip +13 -0
  77. package/shell/functions/tree.wip +13 -0
  78. package/shell/functions/uppercase.sh +28 -0
  79. package/shell/functions/uuidgen.wip +27 -0
  80. package/shell/functions/view-source.sh +8 -0
  81. package/shell/functions/vscode.sh +31 -0
  82. package/shell/functions/whoisport.sh +12 -0
  83. package/shell/functions/zipf.sh +14 -0
  84. package/shell/functions.sh +10 -0
  85. package/shell/history.sh +107 -0
  86. package/shell/paths/ant/ant.paths.sh +15 -0
  87. package/shell/paths/default/default.paths.sh +17 -0
  88. package/shell/paths/homebrew/homebrew.paths.sh +25 -0
  89. package/shell/paths/java/java.paths.sh +16 -0
  90. package/shell/paths/maven/maven.paths.sh +17 -0
  91. package/shell/paths/node/node.paths.sh +13 -0
  92. package/shell/paths/nvm/nvm.paths.sh +21 -0
  93. package/shell/paths/pnpm/pnpm.paths.sh +13 -0
  94. package/shell/paths/python/python.paths.sh +19 -0
  95. package/shell/paths/ruby/ruby.paths.sh +23 -0
  96. package/shell/paths/tmux/tmux.paths.sh +14 -0
  97. package/shell/paths.sh +12 -0
  98. package/.curlrc +0 -17
  99. package/.eslintrc +0 -44
  100. package/.jshintrc +0 -22
  101. package/.travis.yml +0 -21
  102. package/CODE_OF_CONDUCT.md +0 -46
  103. package/CONTRIBUTING.md +0 -60
  104. package/Dotfiles.png +0 -0
  105. package/ISSUE_TEMPLATE.md +0 -43
  106. package/bash/.bash_aliases +0 -409
  107. package/bash/.bash_exit +0 -25
  108. package/bash/.bash_functions +0 -312
  109. package/bash/.bash_load_completion +0 -62
  110. package/bash/.bash_profile +0 -295
  111. package/bash/.bashrc +0 -47
  112. package/homebrew/brew-cask.sh +0 -165
  113. package/homebrew/brew-package.sh +0 -256
  114. package/homebrew/brew-tap.sh +0 -35
  115. package/homebrew/install.sh +0 -29
  116. package/zsh/.zshrc +0 -64
  117. package/zsh/aliases.zsh +0 -427
  118. package/zsh/configurations.zsh +0 -19
  119. package/zsh/exit.zsh +0 -21
  120. package/zsh/functions.zsh +0 -42
  121. package/zsh/history.zsh +0 -53
  122. package/zsh/profile.zsh +0 -17
  123. package/zsh/zsh/configurations/color.zsh +0 -21
  124. package/zsh/zsh/configurations/editor.zsh +0 -21
  125. package/zsh/zsh/configurations/history.zsh +0 -53
  126. package/zsh/zsh/configurations/path.zsh +0 -123
  127. package/zsh/zsh/configurations/prompt.zsh +0 -24
  128. package/zsh/zsh/functions/cd.zsh +0 -51
  129. package/zsh/zsh/functions/cdls.zsh +0 -11
  130. package/zsh/zsh/functions/changediskpwd.zsh +0 -4
  131. package/zsh/zsh/functions/code.zsh +0 -2
  132. package/zsh/zsh/functions/countdown.zsh +0 -33
  133. package/zsh/zsh/functions/curlheader.zsh +0 -12
  134. package/zsh/zsh/functions/curltime.zsh +0 -12
  135. package/zsh/zsh/functions/extract.zsh +0 -27
  136. package/zsh/zsh/functions/goto.zsh +0 -8
  137. package/zsh/zsh/functions/history-all.zsh +0 -2
  138. package/zsh/zsh/functions/hostinfo.zsh +0 -19
  139. package/zsh/zsh/functions/httpdebug.zsh +0 -2
  140. package/zsh/zsh/functions/keygen.zsh +0 -18
  141. package/zsh/zsh/functions/logout.zsh +0 -5
  142. package/zsh/zsh/functions/lowercase.zsh +0 -23
  143. package/zsh/zsh/functions/matrix.zsh +0 -4
  144. package/zsh/zsh/functions/mcd.zsh +0 -11
  145. package/zsh/zsh/functions/mount_read_only.zsh +0 -4
  146. package/zsh/zsh/functions/myproc.zsh +0 -2
  147. package/zsh/zsh/functions/print.zsh +0 -8
  148. package/zsh/zsh/functions/ql.zsh +0 -2
  149. package/zsh/zsh/functions/rd.zsh +0 -8
  150. package/zsh/zsh/functions/remove_disk.zsh +0 -4
  151. package/zsh/zsh/functions/rm.zsh +0 -10
  152. package/zsh/zsh/functions/stopwatch.zsh +0 -8
  153. package/zsh/zsh/functions/trash.zsh +0 -8
  154. package/zsh/zsh/functions/tree.zsh +0 -8
  155. package/zsh/zsh/functions/uppercase.zsh +0 -23
  156. package/zsh/zsh/functions/zipf.zsh +0 -9
package/Makefile ADDED
@@ -0,0 +1,79 @@
1
+ #!/usr/bin/env make -f
2
+
3
+ # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.453) - https://dotfiles.io
4
+ # Copyright (c) Sebastien Rousseau 2022. All rights reserved
5
+ # License: MIT
6
+
7
+ .DEFAULT_GOAL := help
8
+
9
+ homedir := ./installer
10
+ language := en
11
+ PNPM := $(shell command -v pnpm 2> /dev/null)
12
+ HOMEDIR:= $(shell pwd)
13
+
14
+ .PHONY: backup
15
+ backup: # @HELP Backup your current dotfiles.
16
+ backup: ## Backup your current dotfiles.
17
+ ifdef PNPM
18
+ pnpm run backup
19
+ else
20
+ sh $(HOMEDIR)/bin/dotfiles.sh backup
21
+ endif
22
+
23
+ .PHONY: installer
24
+ installer: # @HELP Install the dotfiles on your system.
25
+ installer: ## Install the dotfiles on your system.
26
+ ifdef PNPM
27
+ pnpm run installer
28
+ else
29
+ sh $(HOMEDIR)/bin/dotfiles installer
30
+ endif
31
+
32
+ .PHONY: copy
33
+ copy: # @HELP Copy the dotfiles on your system.
34
+ copy: ## Copy the dotfiles on your system.
35
+ ifdef PNPM
36
+ pnpm run copy
37
+ else
38
+ sh $(HOMEDIR)/bin/dotfiles copy
39
+ endif
40
+
41
+ .PHONY: download
42
+ download: # @HELP Download the dotfiles on your system.
43
+ download: ## Download the dotfiles on your system.
44
+ ifdef PNPM
45
+ pnpm run download
46
+ else
47
+ sh $(HOMEDIR)/bin/dotfiles download
48
+ endif
49
+
50
+ .PHONY: unpack
51
+ unpack: # @HELP Unpack the dotfiles on your system.
52
+ unpack: ## Unpack the dotfiles on your system.
53
+ ifdef PNPM
54
+ pnpm run unpack
55
+ else
56
+ sh $(HOMEDIR)/bin/dotfiles unpack
57
+ endif
58
+
59
+ .PHONY: clean
60
+ clean: # @HELP Removes any previous setup directories. (site, theme source and theme folders)
61
+ clean:
62
+ ifdef PNPM
63
+ pnpm run clean
64
+ else
65
+ sh $(HOMEDIR)/bin/dotfiles clean
66
+ endif
67
+
68
+ .PHONY: help
69
+ help: # @HELP Display the help menu.
70
+ help:
71
+ ifdef PNPM
72
+ pnpm run help
73
+ else
74
+ @grep -E '^.*: *# *@HELP' $(MAKEFILE_LIST) \
75
+ | awk ' \
76
+ BEGIN {FS = ": *# *@HELP"}; \
77
+ { printf " %-30s %s\n"$$1$$2 }; \
78
+ '
79
+ endif
package/README.md CHANGED
@@ -1,109 +1,429 @@
1
- <p align="center">
2
- <img src="Dotfiles.png" alt="Dotfiles Logo" title="Dotfiles Logo">
3
- </p>
1
+ # Dotfiles v0.2.453
4
2
 
5
- [![NPM](https://nodei.co/npm/reedia-dotfiles.png)](https://nodei.co/npm/reedia-dotfiles/)
3
+ [![Banner representing the Dotfiles Library][logo]][website]
6
4
 
7
- [![npm version](https://badge.fury.io/js/reedia-dotfiles.svg)](https://badge.fury.io/js/reedia-dotfiles)
8
- [![Build Status](https://travis-ci.org/reedia/dotfiles.svg?branch=master)](https://travis-ci.org/reedia/dotfiles)
9
- [![Packagist](https://img.shields.io/badge/license-MIT-blue.svg)](https://skeletonic.github.io/license)
5
+ [![Codacy][codacy-grade]][codacy-url]
6
+ [![Contributors][contributors-shield]][contributors-url]
7
+ [![Forks][forks-shield]][forks-url]
8
+ [![License][license]][license-url]
9
+ [![Love][love]][website]
10
10
 
11
- # Dotfiles
11
+ **[Website][website] • [Documentation][github]
12
+ • [Report Bug][issues]
13
+ • [Request Feature][issues]
14
+ • [Contributing Guidelines][contributing]**
12
15
 
13
- ## Mac OS X Dotfiles
16
+ ## 👋 Welcome to Dotfiles
14
17
 
15
- Simply designed to fit your shell life.
18
+ Dotfiles are set of macOS / Linux and Windows configuration files.
16
19
 
17
- <a href="https://github.com/sebastienrousseau/dotfiles/releases/latest">Download Dotfiles</a>
20
+ [![Getting Started][getting started]](#getting-started)
21
+ [![Download Dotfiles v0.2.453][download_button]][download]
18
22
 
19
- ## Table of contents
23
+ ### Simply designed to fit your shell life
20
24
 
21
- - [Dotfiles](#dotfiles)
22
- - [Mac OS X Dotfiles](#mac-os-x-dotfiles)
23
- - [Table of contents](#table-of-contents)
24
- - [Getting Started](#getting-started)
25
- - [What's in the box](#whats-in-the-box)
26
- - [Contributing](#contributing)
27
- - [Code of Conduct](#code-of-conduct)
28
- - [Our Values](#our-values)
29
- - [History](#history)
30
- - [License](#license)
31
- - [Acknowledgements](#acknowledgements)
25
+ Dotfiles aggregates a collection of standalone configuration files (dotfiles)
26
+ combined into a `shell` directory that can be used to customize your development
27
+ environment across numerous computers and operating systems (macOS, Windows,
28
+ Linux).
29
+
30
+ The Dotfiles provides modular configuration files (aliases, functions and paths)
31
+ built for speed, higher performance, with the aim of helping you have an easy
32
+ and centralized way to configure your environment and applications.
33
+
34
+ ![divider][divider]
35
+
36
+ ## 💼 Documentation
37
+
38
+ To read the documentation for Dotfiles, please visit:
39
+
40
+ - [Dotfiles website][website]
41
+ - [Dotfiles Docs GitHub repository][docs]
42
+
43
+ ![divider][divider]
32
44
 
33
45
  ## Getting Started
34
46
 
35
- A few options are available:
47
+ ### 🔧 Installation
48
+
49
+ We are so delighted that you have decided to try Dotfiles, and are sure that you
50
+ will find Dotfiles unique and helpful.
51
+
52
+ Dotfiles seeks to bring you high quality and easy to use standalone and modular configuration files that can be used to customize your development environment
53
+ across numerous computers and operating systems (macOS, Windows, Linux).
54
+
55
+ We understand that you may want to install Dotfiles without reading long manuals
56
+ and lengthy documentation. So we have tried to make the installation process as
57
+ easy as possible.
58
+
59
+ ### 📦 Prerequisites
60
+
61
+ However, we recommend that you read the below guidelines before installing
62
+ Dotfiles. A range of installation methods are available, and we recommend that
63
+ you choose the one that best suits your needs.
64
+
65
+ ![divider][divider]
66
+
67
+ ### ✔️ Requirements
68
+
69
+ The following requirements are needed to install Dotfiles:
70
+
71
+ - [**Bash**][bash] - a shell, or command language interpreter, for the GNU
72
+ operating system.
73
+ - Or [**Zsh**][zsh] - a shell designed for interactive use, although it is also a
74
+ powerful scripting language.
75
+ - [**Git**][git] - a free and open source distributed version control system
76
+ designed to handle everything from small to very large projects with speed and efficiency.
77
+ - [**Curl**][curl] - a command line tool for transferring data with URL syntax.
78
+ - [**Wget**][wget] - a free software package for retrieving files using HTTP,
79
+ HTTPS and FTP, the most widely-used Internet protocols.
80
+ - [**Make**][make] - a tool which controls the generation of executables and other
81
+ non-source files of a program from the program's source files.
82
+ - [**Shell**][shell] - a shell command line interpreter program for Unix-like
83
+ operating systems.
84
+ - [**PnPM**][pnpm] - a package manager for JavaScript and Node.js. It is fast,
85
+ disk space efficient and reliable.
86
+
87
+ ### 1️⃣ Download Dotfiles
88
+
89
+ You can download the latest version (v0.2.453) with the following options:
90
+
91
+ - [**Manual download**][releases] - **The easiest way to install Dotfiles.**
92
+ - [**Install with PnPM**](https://www.npmjs.com/package/@sebastienrousseau/dotfiles)
93
+ `pnpm i -g @sebastienrousseau/dotfiles`.
94
+ - [**Install with Npm**](https://www.npmjs.com/package/@sebastienrousseau/dotfiles)
95
+ `npm install -g @sebastienrousseau/dotfiles`.
96
+ - [**Install with Yarn**](https://yarnpkg.com/package/@sebastienrousseau/dotfiles)
97
+ `yarn global add @sebastienrousseau/dotfiles`.
98
+ - **Clone the main repository** to get all source files including build scripts:
99
+ `git clone https://github.com/sebastienrousseau/dotfiles.git`. This will clone
100
+ the latest version of the Dotfiles repository.
101
+
102
+ ### 2️⃣ Back Up Your Existing Data
103
+
104
+ Before installing Dotfiles, we strongly recommend that you back up your existing
105
+ data. The Dotfiles installer will try to automatically backup any previous
106
+ installation of known dotfiles into a backup directory
107
+ `$HOME/.dotfiles/backup`.
108
+
109
+ The backup files are the following:
110
+
111
+ ```bash
112
+ .alias
113
+ .bash_aliases
114
+ .bash_profile
115
+ .bash_prompt
116
+ .bashrc
117
+ .curlrc
118
+ .dir_colors
119
+ .exports
120
+ .functions
121
+ .gitattributes
122
+ .gitconfig
123
+ .gitignore
124
+ .gitmessage
125
+ .inputrc
126
+ .npmrc
127
+ .path
128
+ .profile
129
+ .tmux.conf
130
+ .vimrc
131
+ .wgetrc
132
+ .yarnrc
133
+ .zshenv
134
+ .zshrc
135
+ cacert.pem
136
+ ```
137
+
138
+ After installation, you will find the backup files in the `~/dotfiles_backup`
139
+ directory. It is always a good idea to backup as there might be situations in which you
140
+ could be required to restore your previous installation.
141
+
142
+ ### 3️⃣ Try it out and let us know what you think
143
+
144
+ To install the latest version of the dotfiles, run the following command:
145
+
146
+ #### Using make (highly recommended)
147
+
148
+ Simply run the following command in your terminal / shell:
149
+
150
+ ```bash
151
+ make installer
152
+ ```
153
+
154
+ or if you want to just check the options available, run the following command:
36
155
 
37
- - Download the latest [release](https://github.com/sebastienrousseau/dotfiles/releases/latest)
38
- - Or simply clone the main repository: `git clone https://github.com/sebastienrousseau/dotfiles.git`
156
+ ```bash
157
+ make help
158
+ ```
39
159
 
40
- ## What's in the box
160
+ #### Using PnPM (recommended if you have PnPM installed)
41
161
 
42
- Within the release you'll find the following files and folders:
162
+ PnPM is a key dependency of the dotfiles package. It will help you install the
163
+ dotfiles rapidly and very efficiently.
43
164
 
165
+ ```bash
166
+ pnpm installer
44
167
  ```
168
+
169
+ ### Post installation
170
+
171
+ Following the installation, you can verify that the dotfiles package is installed
172
+ in the following directory `$HOME/.dotfiles_backup`.
173
+
174
+ Just quit your terminal and restart it. If the installation is successful, you
175
+ should be able to see a new interface of your terminal and be able to start
176
+ using the dotfiles aliases and other configurations.
177
+
178
+ Please refer to the [documentation][docs] for more information.
179
+
180
+ ![divider][divider]
181
+
182
+ ### 4️⃣ What's included
183
+
184
+ Dotfiles contains core elements that are used to configure your shell, and other components catered for your environment setup.
185
+
186
+ Within the download you'll find all the Dotfiles source files grouped within the
187
+ `shell` folder.
188
+
189
+ You'll see something like this:
190
+
191
+ ```bash
45
192
  .
46
- ├── .curlrc
47
- ├── .eslintrc
48
- ├── .gitignore
49
- ├── .jshintrc
50
- ├── .travis.yml
51
- ├── .wgetrc
52
- ├── CODE_OF_CONDUCT.md
53
- ├── CONTRIBUTING.md
54
- ├── Dotfiles.png
55
- ├── ISSUE_TEMPLATE.md
56
- ├── Icon
57
- ├── LICENSE
193
+ ├── aliases
194
+ │   ├── default
195
+ │   │   ├── README.md
196
+ │   │   └── default.aliases.sh # Default aliases
197
+ │   ├── gcloud
198
+ │   │   ├── README.md
199
+ │   │   └── gcloud.aliases.sh # GCloud aliases
200
+ │   ├── git
201
+ │   │   ├── README.md
202
+ │   │   └── git.aliases.wip # Git aliases (WIP)
203
+ │   ├── heroku
204
+ │   │   ├── README.md
205
+ │   │   └── heroku.aliases.sh # Heroku aliases
206
+ │   ├── jekyll
207
+ │   │   ├── README.md
208
+ │   │   └── jekyll.aliases.sh # Jekyll aliases
209
+ │   ├── pnpm
210
+ │   │   ├── README.md
211
+ │   │   └── pnpm.aliases.sh # PnPM aliases
212
+ │   ├── subversion
213
+ │   │   ├── README.md
214
+ │   │   └── subversion.aliases.sh # Subversion aliases
215
+ │   ├── tmux
216
+ │   │   ├── README.md
217
+ │   │   └── tmux.aliases.sh # Tmux aliases
218
+ │   └── README.md
219
+ ├── configurations
220
+ │   ├── bash
221
+ │   │   └── bashrc # Bash configurations
222
+ │   ├── curl
223
+ │   │   ├── cacert.pem # CA Certificates
224
+ │   │   └── curlrc # Curl configurations
225
+ │   ├── default
226
+ │   │   ├── color.sh # Color definitions
227
+ │   │   ├── editor.sh # Editor definitions
228
+ │   │   └── prompt.sh # Prompt definitions
229
+ │   ├── inputrc
230
+ │   │   └── inputrc # Inputrc configurations
231
+ │   ├── jshint
232
+ │   │   └── jshintrc # JSHint configurations
233
+ │   ├── profile
234
+ │   │   └── profile # Profile configurations
235
+ │   ├── tmux
236
+ │   │   └── tmux # Tmux configurations
237
+ │   ├── vim
238
+ │   │   └── vimrc # Vim configurations
239
+ │   ├── wget
240
+ │   │   └── wgetrc # Wget configurations
241
+ │   ├── zsh
242
+ │   │   └── zshrc # Zsh configurations
243
+ │   └── README.md
244
+ ├── functions
245
+ │   ├── README.md
246
+ │   ├── cdls.sh # cdls function
247
+ │   ├── changediskpwd.sh # changediskpwd function
248
+ │   ├── code.sh # code function
249
+ │   ├── countdown.sh # countdown function
250
+ │   ├── curlheader.sh # curlheader function
251
+ │   ├── curltime.sh # curltime function
252
+ │   ├── encode64.sh # encode64 function
253
+ │   ├── environment.sh # environment function
254
+ │   ├── extract.sh # extract function
255
+ │   ├── filehead.sh # filehead function
256
+ │   ├── genpwd.sh # genpwd function
257
+ │   ├── goto.sh # goto function
258
+ │   ├── headers.sh # headers function
259
+ │   ├── hidehiddenfiles.sh # hidehiddenfiles function
260
+ │   ├── history-all.sh # history-all function
261
+ │   ├── hostinfo.sh # hostinfo function
262
+ │   ├── hstats.sh # hstats function
263
+ │   ├── httpdebug.sh # httpdebug function
264
+ │   ├── keygen.sh # keygen function
265
+ │   ├── last.sh # last function
266
+ │   ├── logout.sh # logout function
267
+ │   ├── lowercase.sh # lowercase function
268
+ │   ├── macos.sh # macos function
269
+ │   ├── matrix.sh # matrix function
270
+ │   ├── mcd.sh # mcd function
271
+ │   ├── mount_read_only.sh # mount_read_only function
272
+ │   ├── myproc.sh # myproc function
273
+ │   ├── prependpath.sh # prependpath function
274
+ │   ├── print.sh # print function
275
+ │   ├── ql.sh # ql function
276
+ │   ├── rd.sh # rd function
277
+ │   ├── remove_disk.sh # remove_disk function
278
+ │   ├── ren.sh # ren function
279
+ │   ├── rm.sh # rm function
280
+ │   ├── rps.sh # rps function
281
+ │   ├── showhiddenfiles.sh # showhiddenfiles function
282
+ │   ├── size.sh # size function
283
+ │   ├── stopwatch.sh # stopwatch function
284
+ │   ├── trash.sh # trash function
285
+ │   ├── tree.sh # tree function
286
+ │   ├── uppercase.sh # uppercase function
287
+ │   ├── uuidgen.sh # uuidgen function
288
+ │   ├── view-source.sh # view-source function
289
+ │   ├── vscode.sh # vscode function
290
+ │   ├── whoisport.sh # whoisport function
291
+ │   └── zipf.sh # zipf function
292
+ ├── paths
293
+ │   ├── ant
294
+ │   │   └── ant.paths.sh # Ant paths
295
+ │   ├── default
296
+ │   │   └── default.paths.sh # Default paths
297
+ │   ├── homebrew
298
+ │   │   └── homebrew.paths.sh # Homebrew paths
299
+ │   ├── java
300
+ │   │   └── java.paths.sh # Java paths
301
+ │   ├── maven
302
+ │   │   └── maven.paths.sh # Maven paths
303
+ │   ├── node
304
+ │   │   └── node.paths.sh # Node paths
305
+ │   ├── nvm
306
+ │   │   └── nvm.paths.sh # Nvm paths
307
+ │   ├── pnpm
308
+ │   │   └── pnpm.paths.sh # Pnpm paths
309
+ │   ├── ruby
310
+ │   │   └── ruby.paths.sh # Ruby paths
311
+ │   └── tmux
312
+ │   └── tmux.paths.sh # Tmux paths
58
313
  ├── README.md
59
- ├── bash
60
- │   ├── .bash_aliases
61
- │   ├── .bash_exit
62
- │   ├── .bash_functions
63
- │   ├── .bash_load_completion
64
- │   ├── .bash_profile
65
- │   └── .bashrc
66
- ├── homebrew
67
- │   ├── brew-cask.sh
68
- │   ├── brew-package.sh
69
- │   ├── brew-tap.sh
70
- │   └── install.sh
71
- ├── zsh
72
- │   ├── configurations
73
- │   ├── functions
74
- ├── installers
75
- └── package.json
314
+ ├── aliases.sh # aliases loader
315
+ ├── configurations.sh # configurations loader
316
+ ├── exit.sh # exit loader
317
+ ├── functions.sh # functions loader
318
+ ├── history.sh # history loader
319
+ └── paths.sh # paths loader
76
320
 
321
+ 32 directories, 95 files
77
322
  ```
78
323
 
79
- ## Contributing
324
+ ## 🔗 Releases
80
325
 
81
- Please read carefully through our [Contributing Guidelines](https://github.com/sebastienrousseau/dotfiles/blob/master/CONTRIBUTING.md) for further details on the process for submitting pull requests to us.
326
+ Releases are available on the [GitHub releases page][releases].
82
327
 
83
- ## Code of Conduct
328
+ ![divider][divider]
84
329
 
85
- We are committed to preserving and fostering a diverse, welcoming community. Please read our [Code of Conduct](https://github.com/sebastienrousseau/dotfiles/blob/master/CODE_OF_CONDUCT.md).
330
+ ## 🚥 Semantic versioning policy
86
331
 
87
- ## Our Values
332
+ For transparency into our release cycle and in striving to maintain backward
333
+ compatibility, `Dotfiles` follows [Semantic Versioning][semver-url]
334
+ (SemVer) and [ESLint's Semantic Versioning Policy][eslint-semantic-url].
88
335
 
89
- 1. We believe perfection must consider everything.
90
- 2. We take our passion beyond Code into our daily practices.
91
- 3. We are just obsessed about creating and delivering exceptional solutions.
336
+ ![divider][divider]
92
337
 
93
338
  ## History
94
339
 
95
- - See [Dotfiles Release](https://github.com/sebastienrousseau/dotfiles/releases) list.
340
+ - See [Dotfiles Release](https://github.com/sebastienrousseau/dotfiles/releases)
341
+ list.
342
+
343
+ ## ✅ Changelog
344
+
345
+ - [GitHub Releases](https://github.com/sebastienrousseau/dotfiles/releases)
346
+
347
+ ![divider][divider]
96
348
 
97
- ## License
349
+ ## 📖 Code of Conduct
98
350
 
99
- This project is licensed under the MIT License - see the [LICENSE](https://github.com/sebastienrousseau/dotfiles/blob/master/LICENSE) file for details
351
+ We are committed to preserving and fostering a diverse, welcoming community.
352
+ Please read our [Code of Conduct](https://github.com/sebastienrousseau/dotfiles/blob/master/.github/CODE-OF-CONDUCT.md).
353
+
354
+ ![divider][divider]
355
+
356
+ ## ⭐️ Our Values
357
+
358
+ - We believe perfection must consider everything.
359
+ - We take our passion beyond code into our daily practices.
360
+ - We are just obsessed about creating and delivering exceptional solutions.
361
+
362
+ ![divider][divider]
363
+
364
+ ## ❤️ Contributing
365
+
366
+ Thank you for using Dotfiles! If you like the library, it would be
367
+ great if you can give it a star ⭐ on [GitHub][github].
368
+
369
+ There are also many ways in which you can participate in this project, for
370
+ example:
371
+
372
+ - [Submit bugs and feature requests](https://github.com/sebastienrousseau/dotfiles/issues/new), and help us verify as they are checked in,
373
+ - Review [source code changes](https://github.com/sebastienrousseau/dotfiles/pulls), and help us improve our code quality,
374
+ - Review the [documentation](https://github.com/sebastienrousseau/dotfiles/docs) and make pull requests for anything from typos to additional and new content.
375
+
376
+ Please read carefully through our
377
+ [Contributing Guidelines][contributing]
378
+ for further details on the process for submitting pull requests to us.
379
+
380
+ ![divider][divider]
381
+
382
+ ## 🥂 License
383
+
384
+ This project is licensed under the MIT License - see the [LICENSE](https://github.com/sebastienrousseau/dotfiles/blob/master/LICENSE) file for details.
100
385
 
101
386
  [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Freedia%2Fdotfiles.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Freedia%2Fdotfiles?ref=badge_large)
102
387
 
103
- ## Acknowledgements
388
+ ![divider][divider]
104
389
 
105
- [Dotfiles](https://dotfiles.io) is beautifully crafted by these people and a bunch of awesome [contributors](https://github.com/sebastienrousseau/dotfiles/graphs/contributors)
390
+ ## 🏢 Acknowledgements
391
+
392
+ [Dotfiles][website] is beautifully crafted by these people and a
393
+ bunch of awesome [contributors](https://github.com/sebastienrousseau/dotfiles/graphs/contributors)
106
394
 
107
395
  | [![Sebastien Rousseau](https://avatars0.githubusercontent.com/u/1394998?s=117)](http://sebastienrousseau.co.uk) | [![Graham Colgate](https://avatars0.githubusercontent.com/u/35816108?s=117)](https://github.com/gramtech) |
108
396
  | :-------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------: |
109
397
  | [Sebastien Rousseau](https://github.com/sebastienrousseau) | [Graham Colgate](https://github.com/gramtech) |
398
+
399
+ [bash]: https://www.gnu.org/software/bash/
400
+ [contributing]: https://github.com/sebastienrousseau/dotfiles/blob/master/.github/CONTRIBUTING.md
401
+ [curl]: https://curl.se/
402
+ [docs]: https://github.com/sebastienrousseau/dotfiles/docs
403
+ [download]: https://github.com/sebastienrousseau/dotfiles/archive/refs/tags/v0.2.453.tar.gz
404
+ [git]: https://git-scm.com/
405
+ [github]: https://github.com/sebastienrousseau/dotfiles
406
+ [issues]: https://github.com/sebastienrousseau/dotfiles/issues
407
+ [make]: https://www.gnu.org/software/make/
408
+ [pnpm]: https://pnpm.io
409
+ [releases]: https://github.com/sebastienrousseau/dotfiles/releases
410
+ [shell]: https://www.gnu.org/software/shell/
411
+ [website]: https://dotfiles.io
412
+ [wget]: https://www.gnu.org/software/wget/
413
+ [zsh]: https://www.zsh.org/
414
+
415
+ [logo]: https://github.com/sebastienrousseau/dotfiles/raw/master/assets/dotfiles.svg
416
+ [download_button]: https://github.com/sebastienrousseau/dotfiles/raw/master/assets/button-secondary.svg
417
+ [getting started]: https://github.com/sebastienrousseau/dotfiles/raw/master/assets/button-primary.svg
418
+ [codacy-grade]: https://img.shields.io/codacy/grade/634cfc4de08e492ebcbb341631066241?style=for-the-badge
419
+ [codacy-url]:https://www.codacy.com/gh/sebastienrousseau/dotfiles/dashboard
420
+ [contributors-shield]: https://img.shields.io/github/contributors/sebastienrousseau/dotfiles.svg?style=for-the-badge
421
+ [contributors-url]: https://github.com/sebastienrousseau/dotfiles/graphs/contributors
422
+ [divider]: https://raw.githubusercontent.com/sebastienrousseau/dotfiles/master/assets/divider.svg "divider"
423
+ [forks-shield]: https://img.shields.io/github/forks/sebastienrousseau/dotfiles.svg?style=for-the-badge
424
+ [forks-url]: https://github.com/sebastienrousseau/dotfiles/network/members
425
+ [license-url]: https://opensource.org/licenses/MIT
426
+ [license]: https://img.shields.io/badge/License-MIT-green.svg?style=for-the-badge\&color=ff69b4
427
+ [love]: https://github.com/sebastienrousseau/dotfiles/raw/master/assets/made-with-love.svg
428
+ [semver-url]: http://semver.org/
429
+ [eslint-semantic-url]: https://github.com/eslint/eslint#semantic-versioning-policy