@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/COPYRIGHT ADDED
@@ -0,0 +1,5 @@
1
+ /*
2
+ * 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.452) - https://dotfiles.io
3
+ * Copyright (c) Sebastien Rousseau 2022. All rights reserved
4
+ * License: MIT
5
+ */