@sebastienrousseau/dotfiles 0.2.469 → 0.2.499

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 (221) hide show
  1. package/docs/ARCHITECTURE.md +62 -0
  2. package/docs/COMPLIANCE.md +47 -0
  3. package/docs/COPYRIGHT +6 -0
  4. package/docs/OPERATIONS.md +103 -0
  5. package/docs/PLAN.md +161 -0
  6. package/docs/PR_DESCRIPTION.md +150 -0
  7. package/docs/ROADMAP.md +148 -0
  8. package/docs/ROADMAP_legacy.md +556 -0
  9. package/docs/SECURITY_CHECKLIST.md +25 -0
  10. package/docs/TASK.md +99 -0
  11. package/docs/WALKTHROUGH.md +46 -0
  12. package/package.json +64 -76
  13. package/scripts/backup.sh +142 -0
  14. package/{dist/scripts → scripts}/banner.sh +1 -1
  15. package/scripts/benchmark.sh +20 -0
  16. package/{dist/scripts → scripts}/build.sh +1 -1
  17. package/{dist/scripts → scripts}/clean.sh +1 -1
  18. package/{dist/scripts → scripts}/compile.sh +1 -1
  19. package/{dist/scripts → scripts}/copy.sh +1 -1
  20. package/scripts/detect-collisions.py +84 -0
  21. package/scripts/doctor.sh +79 -0
  22. package/{dist/scripts → scripts}/dotfiles.sh +1 -1
  23. package/{dist/scripts → scripts}/download.sh +1 -1
  24. package/{dist/scripts → scripts}/help.sh +1 -1
  25. package/scripts/lock-configs.sh +57 -0
  26. package/scripts/package.sh +46 -0
  27. package/{dist/scripts → scripts}/ssh.sh +1 -1
  28. package/scripts/teleport.sh +23 -0
  29. package/scripts/test-aliases.sh +25 -0
  30. package/scripts/test_smoke.sh +88 -0
  31. package/{dist/scripts → scripts}/unpack.sh +1 -1
  32. package/scripts/verify_state.sh +60 -0
  33. package/templates/projects/go/README.md +3 -0
  34. package/templates/projects/go/cmd/__PROJECT_NAME__/main.go +7 -0
  35. package/templates/projects/go/go.mod +3 -0
  36. package/templates/projects/node/README.md +3 -0
  37. package/templates/projects/node/package.json +10 -0
  38. package/templates/projects/node/src/index.js +2 -0
  39. package/templates/projects/python/README.md +3 -0
  40. package/templates/projects/python/pyproject.toml +10 -0
  41. package/templates/projects/python/src/__PROJECT_NAME__/__init__.py +1 -0
  42. package/templates/projects/python/tests/test_basic.py +2 -0
  43. package/LICENSE +0 -1283
  44. package/README.md +0 -398
  45. package/dist/Makefile +0 -140
  46. package/dist/bin/backup.d.ts +0 -3
  47. package/dist/bin/backup.d.ts.map +0 -1
  48. package/dist/bin/backup.js +0 -4
  49. package/dist/bin/backup.js.map +0 -1
  50. package/dist/bin/constants.d.ts +0 -7
  51. package/dist/bin/constants.d.ts.map +0 -1
  52. package/dist/bin/constants.js +0 -2
  53. package/dist/bin/constants.js.map +0 -1
  54. package/dist/bin/copy.d.ts +0 -3
  55. package/dist/bin/copy.d.ts.map +0 -1
  56. package/dist/bin/copy.js +0 -3
  57. package/dist/bin/copy.js.map +0 -1
  58. package/dist/bin/dotfiles.d.ts +0 -3
  59. package/dist/bin/dotfiles.d.ts.map +0 -1
  60. package/dist/bin/dotfiles.js +0 -2
  61. package/dist/bin/dotfiles.js.map +0 -1
  62. package/dist/bin/download.d.ts +0 -3
  63. package/dist/bin/download.d.ts.map +0 -1
  64. package/dist/bin/download.js +0 -2
  65. package/dist/bin/download.js.map +0 -1
  66. package/dist/bin/index.d.ts +0 -2
  67. package/dist/bin/index.d.ts.map +0 -1
  68. package/dist/bin/index.js +0 -1
  69. package/dist/bin/index.js.map +0 -1
  70. package/dist/bin/transfer.d.ts +0 -3
  71. package/dist/bin/transfer.d.ts.map +0 -1
  72. package/dist/bin/transfer.js +0 -4
  73. package/dist/bin/transfer.js.map +0 -1
  74. package/dist/bin/unpack.d.ts +0 -3
  75. package/dist/bin/unpack.d.ts.map +0 -1
  76. package/dist/bin/unpack.js +0 -3
  77. package/dist/bin/unpack.js.map +0 -1
  78. package/dist/filesizes.txt +0 -382
  79. package/dist/lib/README.md +0 -86
  80. package/dist/lib/aliases/README.md +0 -57
  81. package/dist/lib/aliases/archives/README.md +0 -145
  82. package/dist/lib/aliases/archives/archives.aliases.sh +0 -114
  83. package/dist/lib/aliases/cd/README.md +0 -146
  84. package/dist/lib/aliases/cd/cd.aliases.sh +0 -51
  85. package/dist/lib/aliases/chmod/README.md +0 -160
  86. package/dist/lib/aliases/chmod/chmod.aliases.sh +0 -107
  87. package/dist/lib/aliases/clear/README.md +0 -37
  88. package/dist/lib/aliases/clear/clear.aliases.sh +0 -71
  89. package/dist/lib/aliases/configuration/README.md +0 -39
  90. package/dist/lib/aliases/configuration/configuration.aliases.sh +0 -70
  91. package/dist/lib/aliases/default/README.md +0 -40
  92. package/dist/lib/aliases/default/default.aliases.sh +0 -139
  93. package/dist/lib/aliases/dig/README.md +0 -37
  94. package/dist/lib/aliases/dig/dig.aliases.sh +0 -43
  95. package/dist/lib/aliases/disk-usage/README.md +0 -36
  96. package/dist/lib/aliases/disk-usage/du.aliases.sh +0 -84
  97. package/dist/lib/aliases/editor/README.md +0 -53
  98. package/dist/lib/aliases/editor/editor.aliases.sh +0 -26
  99. package/dist/lib/aliases/find/README.md +0 -46
  100. package/dist/lib/aliases/find/find.aliases.sh +0 -60
  101. package/dist/lib/aliases/gcloud/README.md +0 -63
  102. package/dist/lib/aliases/gcloud/gcloud.aliases.sh +0 -335
  103. package/dist/lib/aliases/git/README.md +0 -153
  104. package/dist/lib/aliases/git/git.aliases.sh +0 -544
  105. package/dist/lib/aliases/gnu/README.md +0 -89
  106. package/dist/lib/aliases/gnu/gnucoreutils-aliases.sh +0 -150
  107. package/dist/lib/aliases/heroku/README.md +0 -430
  108. package/dist/lib/aliases/heroku/heroku.aliases.sh +0 -1053
  109. package/dist/lib/aliases/interactive/README.md +0 -55
  110. package/dist/lib/aliases/interactive/interactive.aliases.sh +0 -50
  111. package/dist/lib/aliases/list/README.md +0 -131
  112. package/dist/lib/aliases/list/list.aliases.sh +0 -132
  113. package/dist/lib/aliases/macOS/README.md +0 -42
  114. package/dist/lib/aliases/macOS/macos.aliases.sh +0 -65
  115. package/dist/lib/aliases/make/README.md +0 -32
  116. package/dist/lib/aliases/make/make.aliases.sh +0 -35
  117. package/dist/lib/aliases/mkdir/README.md +0 -30
  118. package/dist/lib/aliases/mkdir/mkdir.aliases.sh +0 -29
  119. package/dist/lib/aliases/npm/README.md +0 -41
  120. package/dist/lib/aliases/npm/npm.aliases.sh +0 -61
  121. package/dist/lib/aliases/permission/README.md +0 -47
  122. package/dist/lib/aliases/permission/permission.aliases.sh +0 -73
  123. package/dist/lib/aliases/pnpm/README.md +0 -53
  124. package/dist/lib/aliases/pnpm/pnpm.aliases.sh +0 -76
  125. package/dist/lib/aliases/ps/README.md +0 -29
  126. package/dist/lib/aliases/ps/ps.aliases.sh +0 -20
  127. package/dist/lib/aliases/python/python.aliases.sh +0 -141
  128. package/dist/lib/aliases/rsync/README.md +0 -25
  129. package/dist/lib/aliases/rsync/rsync.aliases.sh +0 -17
  130. package/dist/lib/aliases/rust/README.md +0 -182
  131. package/dist/lib/aliases/rust/rust.aliases.sh +0 -119
  132. package/dist/lib/aliases/subversion/README.md +0 -66
  133. package/dist/lib/aliases/subversion/subversion.aliases.sh +0 -47
  134. package/dist/lib/aliases/sudo/README.md +0 -27
  135. package/dist/lib/aliases/sudo/sudo.aliases.sh +0 -20
  136. package/dist/lib/aliases/tmux/README.md +0 -31
  137. package/dist/lib/aliases/tmux/tmux.aliases.sh +0 -36
  138. package/dist/lib/aliases/update/README.md +0 -38
  139. package/dist/lib/aliases/update/update.aliases.sh +0 -310
  140. package/dist/lib/aliases/uuid/README.md +0 -24
  141. package/dist/lib/aliases/uuid/uuid.aliases.sh +0 -19
  142. package/dist/lib/aliases/wget/README.md +0 -27
  143. package/dist/lib/aliases/wget/wget.aliases.sh +0 -22
  144. package/dist/lib/aliases.sh +0 -50
  145. package/dist/lib/configurations/README.md +0 -18
  146. package/dist/lib/configurations/bash/bashrc +0 -167
  147. package/dist/lib/configurations/curl/cacert.pem +0 -3460
  148. package/dist/lib/configurations/curl/curlrc +0 -53
  149. package/dist/lib/configurations/default/color.sh +0 -24
  150. package/dist/lib/configurations/default/constants.sh +0 -43
  151. package/dist/lib/configurations/default/editor.sh +0 -18
  152. package/dist/lib/configurations/default/prompt.sh +0 -48
  153. package/dist/lib/configurations/gem/gemrc +0 -9
  154. package/dist/lib/configurations/input/inputrc +0 -23
  155. package/dist/lib/configurations/jshint/jshintrc +0 -37
  156. package/dist/lib/configurations/nano/nanorc +0 -35
  157. package/dist/lib/configurations/profile/profile +0 -37
  158. package/dist/lib/configurations/prompt/prompt.sh +0 -81
  159. package/dist/lib/configurations/tmux/default +0 -18
  160. package/dist/lib/configurations/tmux/display +0 -30
  161. package/dist/lib/configurations/tmux/linux +0 -18
  162. package/dist/lib/configurations/tmux/navigation +0 -30
  163. package/dist/lib/configurations/tmux/panes +0 -10
  164. package/dist/lib/configurations/tmux/theme +0 -29
  165. package/dist/lib/configurations/tmux/tmux +0 -21
  166. package/dist/lib/configurations/vim/vimrc +0 -193
  167. package/dist/lib/configurations/wget/wgetrc +0 -40
  168. package/dist/lib/configurations/zsh/zshrc +0 -50
  169. package/dist/lib/configurations.sh +0 -45
  170. package/dist/lib/functions/README.md +0 -92
  171. package/dist/lib/functions/apihealth.sh +0 -277
  172. package/dist/lib/functions/apilatency.sh +0 -157
  173. package/dist/lib/functions/apiload.sh +0 -165
  174. package/dist/lib/functions/backup.sh +0 -143
  175. package/dist/lib/functions/cdls.sh +0 -60
  176. package/dist/lib/functions/curlheader.sh +0 -78
  177. package/dist/lib/functions/curlstatus.sh +0 -74
  178. package/dist/lib/functions/curltime.sh +0 -75
  179. package/dist/lib/functions/encode64.sh +0 -107
  180. package/dist/lib/functions/environment.sh +0 -78
  181. package/dist/lib/functions/extract.sh +0 -86
  182. package/dist/lib/functions/freespace.sh +0 -67
  183. package/dist/lib/functions/genpwd.sh +0 -105
  184. package/dist/lib/functions/goto.sh +0 -67
  185. package/dist/lib/functions/hexdump.sh +0 -96
  186. package/dist/lib/functions/hiddenfiles.sh +0 -77
  187. package/dist/lib/functions/hostinfo.sh +0 -98
  188. package/dist/lib/functions/hstats.sh +0 -75
  189. package/dist/lib/functions/httpdebug.sh +0 -113
  190. package/dist/lib/functions/kebabcase.sh +0 -61
  191. package/dist/lib/functions/keygen.sh +0 -194
  192. package/dist/lib/functions/last.sh +0 -112
  193. package/dist/lib/functions/logout.sh +0 -120
  194. package/dist/lib/functions/lowercase.sh +0 -61
  195. package/dist/lib/functions/matrix.sh +0 -216
  196. package/dist/lib/functions/mount_read_only.sh +0 -11
  197. package/dist/lib/functions/myproc.sh +0 -9
  198. package/dist/lib/functions/prependpath.sh +0 -21
  199. package/dist/lib/functions/ql.sh +0 -9
  200. package/dist/lib/functions/rd.sh +0 -17
  201. package/dist/lib/functions/remove_disk.sh +0 -11
  202. package/dist/lib/functions/ren.sh +0 -73
  203. package/dist/lib/functions/sentencecase.sh +0 -63
  204. package/dist/lib/functions/showhiddenfiles.sh +0 -14
  205. package/dist/lib/functions/size.sh +0 -16
  206. package/dist/lib/functions/snakecase.sh +0 -61
  207. package/dist/lib/functions/stopwatch.sh +0 -15
  208. package/dist/lib/functions/sysinfo.sh +0 -145
  209. package/dist/lib/functions/titlecase.sh +0 -65
  210. package/dist/lib/functions/uppercase.sh +0 -61
  211. package/dist/lib/functions/view-source.sh +0 -9
  212. package/dist/lib/functions/vscode.sh +0 -32
  213. package/dist/lib/functions/whoisport.sh +0 -14
  214. package/dist/lib/functions/zipf.sh +0 -16
  215. package/dist/lib/functions.sh +0 -46
  216. package/dist/lib/history.sh +0 -90
  217. package/dist/lib/paths/README.md +0 -52
  218. package/dist/lib/paths/custom.paths.sh +0 -40
  219. package/dist/lib/paths/default.paths.sh +0 -37
  220. package/dist/lib/paths.sh +0 -46
  221. package/dist/scripts/backup.sh +0 -95
@@ -1,182 +0,0 @@
1
- <!-- markdownlint-disable MD033 MD041 MD043 -->
2
- <img
3
- src="https://kura.pro/dotfiles/v2/images/logos/dotfiles.svg"
4
- alt="dotfiles logo"
5
- width="66"
6
- align="right"
7
- />
8
- <!-- markdownlint-enable MD033 MD041 -->
9
-
10
- # Dotfiles (v0.2.469)
11
-
12
- Simply designed to fit your shell life 🐚
13
-
14
- ![Dotfiles banner][banner]
15
-
16
- ## 🆁🆄🆂🆃🆄🅿 🅰🅽🅳 🅲🅰🆁🅶🅾 🅰🅻🅸🅰🆂🅴🆂
17
-
18
- This code provides a comprehensive set of aliases for Rust development
19
- using `cargo` and `rustup` commands.
20
-
21
- ### Cargo Aliases
22
-
23
- #### Basic Commands
24
-
25
- - `cg` - Cargo shortcut
26
- - `cgn` - Create new binary project
27
- - `cgni` - Create new library project
28
- - `cginit` - Initialize project in current directory
29
-
30
- #### Build and Run
31
-
32
- - `cgb` - Build debug
33
- - `cgbr` - Build release
34
- - `cgr` - Run debug
35
- - `cgrr` - Run release
36
- - `cgw` - Watch and rebuild
37
-
38
- #### Testing and Benchmarking
39
-
40
- - `cgt` - Run tests
41
- - `cgtr` - Run tests in release mode
42
- - `cgbh` - Run benchmarks
43
- - `cgta` - Test all targets
44
- - `cgtt` - Single threaded tests
45
-
46
- #### Code Quality
47
-
48
- - `cgc` - Check compilation
49
- - `cgcl` - Clean build artifacts
50
- - `cgcy` - Run clippy lints
51
- - `cgf` - Format code
52
- - `cgfa` - Format all code
53
- - `cgfx` - Auto-fix code issues
54
- - `cgaud` - Security vulnerabilities check
55
-
56
- #### Documentation
57
-
58
- - `cgd` - Build and open documentation
59
- - `cgdr` - Build release documentation
60
- - `cgdo` - Document private items
61
-
62
- #### Dependencies
63
-
64
- - `cga` - Add dependency
65
- - `cgad` - Add dev dependency
66
- - `cgu` - Update dependencies
67
- - `cgo` - Check outdated dependencies
68
- - `cgv` - Vendor dependencies
69
- - `cgtree` - Display dependency tree
70
-
71
- #### Cross Compilation
72
-
73
- - `cgx` - Build using Zig
74
- - `cgxw` - Cross compilation
75
- - `cgxt` - Target specific platform
76
-
77
- #### Analysis and Profiling
78
-
79
- - `cgfl` - Generate flamegraph
80
- - `cgbl` - Binary size analysis
81
- - `cgl` - Code coverage
82
- - `cgm` - Module structure
83
- - `cgex` - Expand macros
84
-
85
- #### Package Management
86
-
87
- - `cgi` - Install binary
88
- - `cgun` - Uninstall binary
89
- - `cgp` - Publish to crates.io
90
- - `cgs` - Search crates.io
91
- - `cgcp` - Create release package
92
-
93
- #### Advanced Build
94
-
95
- - `cgba` - Build all targets
96
- - `cgbt` - Build with all features
97
- - `cgbp` - Build with specific profile
98
-
99
- #### Project Templates
100
-
101
- - `cgnb` - New binary from template
102
- - `cgnl` - New library from template
103
- - `cgnt` - New from custom template
104
-
105
- ### Rustup Aliases
106
-
107
- #### Updates and Installation
108
-
109
- - `ru` - Update all toolchains
110
- - `rus` - Update stable toolchain
111
- - `run` - Update nightly toolchain
112
- - `rti` - Install specific toolchain
113
-
114
- #### Components Management
115
-
116
- - `rca` - Add component
117
- - `rcl` - List components
118
- - `rcr` - Remove component
119
-
120
- #### Toolchain Management
121
-
122
- - `rtl` - List installed toolchains
123
- - `rtu` - Uninstall toolchain
124
- - `rde` - Set default toolchain
125
-
126
- #### Target Management
127
-
128
- - `rtaa` - Add compilation target
129
- - `rtal` - List available targets
130
- - `rtar` - Remove compilation target
131
-
132
- #### Environment Running
133
-
134
- - `rns` - Run command with stable
135
- - `rnn` - Run command with nightly
136
-
137
- #### Documentation and Help
138
-
139
- - `rdo` - Open Rust documentation
140
-
141
- #### Override Management
142
-
143
- - `rpr` - Set directory toolchain
144
- - `rpl` - List directory overrides
145
- - `rpn` - Remove directory override
146
-
147
- #### Toolchain Information
148
-
149
- - `rws` - Show active rustc path
150
- - `rsh` - Show toolchain info
151
-
152
- ### Common Workflows
153
-
154
- #### New Project Setup
155
-
156
- ```bash
157
- # Create new project with common dependencies
158
- cgn myproject && cd myproject && cga serde && cgad tokio
159
- ```
160
-
161
- #### Release Workflow
162
-
163
- ```bash
164
- # Check, test, and build for release
165
- cgcy && cgt && cgbr && cgaud
166
- ```
167
-
168
- #### Documentation Update
169
-
170
- ```bash
171
- # Format code and update documentation
172
- cgfa && cgd && cgdo
173
- ```
174
-
175
- #### Cross-compilation Check
176
-
177
- ```bash
178
- # Check build for different architecture
179
- cgxw check --target aarch64-unknown-linux-gnu
180
- ```
181
-
182
- [banner]: https://kura.pro/dotfiles/v2/images/titles/title-dotfiles.svg
@@ -1,119 +0,0 @@
1
- #!/usr/bin/env bash
2
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
3
- # Made with ♥ in London, UK by Sebastien Rousseau
4
- # Copyright (c) 2015-2025. All rights reserved
5
- # License: MIT
6
-
7
- # 🅲🅰🆁🅶🅾 🅰🅻🅸🅰🆂🅴🆂
8
- if command -v 'cargo' >/dev/null; then
9
- # Basic Commands
10
- alias cg='cargo' # Cargo shortcut
11
- alias cgn='cg new' # Create new binary project
12
- alias cgni='cg new --lib' # Create new library project
13
- alias cginit='cg init' # Initialize project in current directory
14
-
15
- # Build and Run
16
- alias cgb='cg build' # Build debug
17
- alias cgbr='cg build --release' # Build release
18
- alias cgr='cg run' # Run debug
19
- alias cgrr='cg run --release' # Run release
20
- alias cgw='cg watch' # Watch and rebuild
21
-
22
- # Testing and Benchmarking
23
- alias cgt='cg test' # Run tests
24
- alias cgtr='cg test --release' # Run tests in release mode
25
- alias cgbh='cg bench' # Run benchmarks
26
- alias cgta='cg test --all' # Test all targets
27
- alias cgtt='cg test -- --test-threads=1' # Single threaded tests
28
-
29
- # Code Quality
30
- alias cgc='cg check' # Check compilation
31
- alias cgcl='cg clean' # Clean build artifacts
32
- alias cgcy='cg clippy' # Run clippy lints
33
- alias cgf='cg fmt' # Format code
34
- alias cgfa='cg fmt --all' # Format all code
35
- alias cgfx='cg fix' # Auto-fix code issues
36
- alias cgaud='cg audit' # Security vulnerabilities check
37
-
38
- # Documentation
39
- alias cgd='cg doc --open' # Build and open documentation
40
- alias cgdr='cg doc --release' # Build release documentation
41
- alias cgdo='cg doc --document-private-items' # Document private items
42
-
43
- # Dependencies
44
- alias cga='cg add' # Add dependency
45
- alias cgad='cg add --dev' # Add dev dependency
46
- alias cgu='cg update' # Update dependencies
47
- alias cgo='cg outdated' # Check outdated dependencies
48
- alias cgv='cg vendor' # Vendor dependencies
49
- alias cgtree='cg tree' # Display dependency tree
50
-
51
- # Cross Compilation
52
- alias cgx='cg zigbuild' # Build using Zig
53
- alias cgxw='cg cross' # Cross compilation
54
- alias cgxt='cg target' # Target specific platform
55
-
56
- # Analysis and Profiling
57
- alias cgfl='cg flamegraph' # Generate flamegraph
58
- alias cgbl='cg bloat' # Binary size analysis
59
- alias cgl='cg llvm-cov' # Code coverage
60
- alias cgm='cg modules' # Module structure
61
- alias cgex='cg expand' # Expand macros
62
-
63
- # Package Management
64
- alias cgi='cg install' # Install binary
65
- alias cgun='cg uninstall' # Uninstall binary
66
- alias cgp='cg publish' # Publish to crates.io
67
- alias cgs='cg search' # Search crates.io
68
- alias cgcp='cg package' # Create release package
69
-
70
- # Advanced Build
71
- alias cgba='cg build --all-targets' # Build all targets
72
- alias cgbt='cg build --all-features' # Build with all features
73
- alias cgbp='cg build --release --profile' # Build with specific profile
74
-
75
- # Project Templates
76
- alias cgnb='cg generate --bin' # New binary from template
77
- alias cgnl='cg generate --lib' # New library from template
78
- alias cgnt='cg generate' # New from custom template
79
- fi
80
-
81
- # 🆁🆄🆂🆃🆄🅿 🅰🅻🅸🅰🆂🅴🆂
82
- if command -v 'rustup' >/dev/null; then
83
- # Updates and Installation
84
- alias ru='rustup update' # Update all toolchains
85
- alias rus='rustup update stable' # Update stable toolchain
86
- alias run='rustup update nightly' # Update nightly toolchain
87
- alias rti='rustup toolchain install' # Install specific toolchain
88
-
89
- # Components Management
90
- alias rca='rustup component add' # Add component
91
- alias rcl='rustup component list' # List components
92
- alias rcr='rustup component remove' # Remove component
93
-
94
- # Toolchain Management
95
- alias rtl='rustup toolchain list' # List installed toolchains
96
- alias rtu='rustup toolchain uninstall' # Uninstall toolchain
97
- alias rde='rustup default' # Set default toolchain
98
-
99
- # Target Management
100
- alias rtaa='rustup target add' # Add compilation target
101
- alias rtal='rustup target list' # List available targets
102
- alias rtar='rustup target remove' # Remove compilation target
103
-
104
- # Environment Running
105
- alias rns='rustup run stable' # Run command with stable
106
- alias rnn='rustup run nightly' # Run command with nightly
107
-
108
- # Documentation and Help
109
- alias rdo='rustup doc --open' # Open Rust documentation
110
-
111
- # Override Management
112
- alias rpr='rustup override set' # Set directory toolchain
113
- alias rpl='rustup override list' # List directory overrides
114
- alias rpn='rustup override none' # Remove directory override
115
-
116
- # Toolchain Information
117
- alias rws='rustup which rustc' # Show active rustc path
118
- alias rsh='rustup show' # Show toolchain info
119
- fi
@@ -1,66 +0,0 @@
1
- <!-- markdownlint-disable MD033 MD041 MD043 -->
2
-
3
- <img
4
- src="https://kura.pro/dotfiles/v2/images/logos/dotfiles.svg"
5
- alt="dotfiles logo"
6
- width="66"
7
- align="right"
8
- />
9
-
10
- <!-- markdownlint-enable MD033 MD041 -->
11
-
12
- # Dotfiles (v0.2.469)
13
-
14
- Simply designed to fit your shell life 🐚
15
-
16
- ![Dotfiles banner][banner]
17
-
18
- ## 🆂🆄🅱🆅🅴🆁🆂🅸🅾🅽 🅰🅻🅸🅰🆂🅴🆂
19
-
20
- This code provides a set of aliases for the Subversion command line.
21
-
22
- - `sad` Put new files and directories under version control.
23
- - `sau` Manage cached authentication credentials.
24
- - `sbl` Show when each line of a file was last (or next) changed.
25
- - `scg` Associate (or dissociate) changelist CLNAME with the named
26
- files.
27
- - `sci` Send changes from your working copy to the repository.
28
- - `scl` Either recover from an interrupted operation that left the
29
- working copy locked, or remove unwanted files.
30
- - `sco` Check out a working copy from a repository.
31
- - `scp` Copy files and directories in a working copy or repository.
32
- - `sct` Output the content of specified files or URLs.
33
- - `sdi` Display local changes or differences between two revisions or
34
- paths.
35
- - `sdl` Remove files and directories from version control.
36
- - `shp` Describe the usage of this program or its subcommands.
37
- - `sin` Display information about a local or remote item.
38
- - `sip` Commit an unversioned file or tree into the repository.
39
- - `slg` Show the log messages for a set of revision(s) and/or path(s).
40
- - `slk` Lock working copy paths or URLs in the repository, so that no
41
- other user can commit changes to them.
42
- - `sls` List directory entries in the repository.
43
- - `smd` Create a new directory under version control.
44
- - `smg` Merge changes into a working copy.
45
- - `smgi` Display merge-related information.
46
- - `smv` Move (rename) an item in a working copy or repository.
47
- - `sp` Set the value of a property on files, dirs, or revisions.
48
- - `spdl` Remove a property from files, dirs, or revisions.
49
- - `spdt` Edit a property with an external editor.
50
- - `spgt` Print the value of a property on files, dirs, or revisions.
51
- - `sph` Apply a patch to a working copy.
52
- - `spls` List all properties on files, dirs, or revisions.
53
- - `srl` Relocate the working copy to point to a different repository
54
- root URL.
55
- - `srs` Resolve conflicts on working copy files or directories.
56
- - `srsd` Remove 'conflicted' state on working copy files or directories.
57
- - `srv` Restore pristine working copy state (undo local changes).
58
- - `sst` Print the status of working copy files and directories.
59
- - `ssw` Update the working copy to a different URL within the same
60
- repository.
61
- - `sulk` Unlock working copy paths or URLs.
62
- - `sup` Bring changes from the repository into the working copy.
63
- - `supg` Upgrade the metadata storage format for a working copy.
64
- - `sxp` Create an unversioned copy of a tree.
65
-
66
- [banner]: https://kura.pro/dotfiles/v2/images/titles/title-dotfiles.svg
@@ -1,47 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
4
- # Made with ♥ in London, UK by Sebastien Rousseau
5
- # Copyright (c) 2015-2025. All rights reserved
6
- # License: MIT
7
-
8
- # 🆂🆄🅱🆅🅴🆁🆂🅸🅾🅽 🅰🅻🅸🅰🆂🅴🆂
9
- if command -v 'svn' >/dev/null; then
10
- alias sad='svn add' # sad: Put new files and directories under version control.
11
- alias sau='svn auth' # sau: Manage cached authentication credentials.
12
- alias sbl='svn blame' # sbl: Show when each line of a file was last (or next) changed.
13
- alias scg='svn changelist' # scg: Associate (or dissociate) changelist CLNAME with the named files.
14
- alias sci='svn commit' # sci: Send changes from your working copy to the repository.
15
- alias scl='svn cleanup' # scl: Either recover from an interrupted operation that left the working copy locked, or remove unwanted files.
16
- alias sco='svn checkout' # sco: Check out a working copy from a repository.
17
- alias scp='svn copy' # scp: Copy files and directories in a working copy or repository.
18
- alias sct='svn cat' # sct: Output the content of specified files or URLs.
19
- alias sdi='svn diff' # sdi: Display local changes or differences between two revisions or paths.
20
- alias sdl='svn delete' # sdl: Remove files and directories from version control.
21
- alias shp='svn help' # shp: Describe the usage of this program or its subcommands.
22
- alias sin='svn info' # sin: Display information about a local or remote item.
23
- alias sip='svn import' # sip: Commit an unversioned file or tree into the repository.
24
- alias slg='svn log' # slg: Show the log messages for a set of revision(s) and/or path(s).
25
- alias slk='svn lock' # slock: Lock working copy paths or URLs in the repository, so that no other user can commit changes to them.
26
- alias sls='svn list' # sls: List directory entries in the repository.
27
- alias smd='svn mkdir' # smd: Create a new directory under version control.
28
- alias smg='svn merge' # smg: Merge changes into a working copy.
29
- alias smgi='svn mergeinfo' # smgi: Display merge-related information.
30
- alias smv='svn move' # smv: Move (rename) an item in a working copy or repository.
31
- alias sp='svn propset' # sp: Set the value of a property on files, dirs, or revisions.
32
- alias spdl='svn propdel' # spdl: Remove a property from files, dirs, or revisions.
33
- alias spdt='svn propedit' # spdt: Edit a property with an external editor.
34
- alias spgt='svn propget' # spgt: Print the value of a property on files, dirs, or revisions.
35
- alias sph='svn patch' # sph: Apply a patch to a working copy.
36
- alias spls='svn proplist' # spls: List all properties on files, dirs, or revisions.
37
- alias srl='svn relocate' # srl: Relocate the working copy to point to a different repository root URL.
38
- alias srs='svn resolve' # srs: Resolve conflicts on working copy files or directories.
39
- alias srsd='svn resolved' # srsd: Remove 'conflicted' state on working copy files or directories.
40
- alias srv='svn revert' # srv: Restore pristine working copy state (undo local changes).
41
- alias sst='svn status' # sst: Print the status of working copy files and directories.
42
- alias ssw='svn switch' # ssw: Update the working copy to a different URL within the same repository.
43
- alias sulk='svn unlock' # sulk: Unlock working copy paths or URLs.
44
- alias sup='svn update' # sup: Bring changes from the repository into the working copy.
45
- alias supg='svn upgrade' # supg: Upgrade the metadata storage format for a working copy.
46
- alias sxp='svn export' # sxp: Create an unversioned copy of a tree.
47
- fi
@@ -1,27 +0,0 @@
1
- <!-- markdownlint-disable MD033 MD041 MD043 -->
2
-
3
- <img
4
- src="https://kura.pro/dotfiles/v2/images/logos/dotfiles.svg"
5
- alt="dotfiles logo"
6
- width="66"
7
- align="right"
8
- />
9
-
10
- <!-- markdownlint-enable MD033 MD041 -->
11
-
12
- # Dotfiles (v0.2.469)
13
-
14
- Simply designed to fit your shell life 🐚
15
-
16
- ![Dotfiles banner][banner]
17
-
18
- ## 🆂🆄🅳🅾 🅰🅻🅸🅰🆂🅴🆂
19
-
20
- This code provides a set of aliases for the `sudo` command.
21
-
22
- - `root` Execute a command as the superuser.
23
- - `s` Execute a command as the superuser.
24
- - `su` Execute a command as the superuser.
25
- - `sudo` Execute a command as the superuser.
26
-
27
- [banner]: https://kura.pro/dotfiles/v2/images/titles/title-dotfiles.svg
@@ -1,20 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
4
- # Made with ♥ in London, UK by Sebastien Rousseau
5
- # Copyright (c) 2015-2025. All rights reserved
6
- # License: MIT
7
-
8
- # 🆂🆄🅳🅾 🅰🅻🅸🅰🆂🅴🆂
9
-
10
- # Execute a command as the superuser.
11
- alias root='s'
12
-
13
- # Execute a command as the superuser.
14
- alias s='sudo -i'
15
-
16
- # Execute a command as the superuser.
17
- alias su='sudo su'
18
-
19
- # Execute a command as the superuser.
20
- alias sudo='s'
@@ -1,31 +0,0 @@
1
- <!-- markdownlint-disable MD033 MD041 MD043 -->
2
-
3
- <img
4
- src="https://kura.pro/dotfiles/v2/images/logos/dotfiles.svg"
5
- alt="dotfiles logo"
6
- width="66"
7
- align="right"
8
- />
9
-
10
- <!-- markdownlint-enable MD033 MD041 -->
11
-
12
- # Dotfiles (v0.2.469)
13
-
14
- Simply designed to fit your shell life 🐚
15
-
16
- ![Dotfiles banner][banner]
17
-
18
- ## 🆃🅼🆄🆇 🅰🅻🅸🅰🆂🅴🆂
19
-
20
- This code provides a set of aliases for the `tmux` command.
21
-
22
- - `tm` Start tmux.
23
- - `tma` Attach to a tmux session.
24
- - `tmat` Attach to a tmux session with name.
25
- - `tmks` Kill all tmux sessions.
26
- - `tml` List tmux sessions.
27
- - `tmn` Start a new tmux session.
28
- - `tmns` Start a new tmux session with name.
29
- - `tms` Start a new tmux session.
30
-
31
- [banner]: https://kura.pro/dotfiles/v2/images/titles/title-dotfiles.svg
@@ -1,36 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
4
- # Made with ♥ in London, UK by Sebastien Rousseau
5
- # Copyright (c) 2015-2025. All rights reserved
6
- # License: MIT
7
-
8
- # 🆃🅼🆄🆇 🅰🅻🅸🅰🆂🅴🆂
9
-
10
- if command -v 'tmux' >/dev/null; then
11
-
12
- # Start tmux.
13
- alias tm='tmux'
14
-
15
- # Attach to a tmux session.
16
- alias tma="tmux attach-session"
17
-
18
- # Attach to a tmux session with name.
19
- alias tmat="tmux attach-session -t"
20
-
21
- # Kill all tmux sessions.
22
- alias tmks='tmux kill-session -a'
23
-
24
- # List tmux sessions.
25
- alias tml='tmux list-sessions'
26
-
27
- # Start a new tmux session.
28
- alias tmn="tmux new-session"
29
-
30
- # Start a new tmux session with name.
31
- alias tmns="tmux new -s"
32
-
33
- # Start a new tmux session.
34
- alias tms='tmux new-session -s'
35
-
36
- fi
@@ -1,38 +0,0 @@
1
- <!-- markdownlint-disable MD033 MD041 MD043 -->
2
-
3
- <img
4
- src="https://kura.pro/dotfiles/v2/images/logos/dotfiles.svg"
5
- alt="dotfiles logo"
6
- width="66"
7
- align="right"
8
- />
9
-
10
- <!-- markdownlint-enable MD033 MD041 -->
11
-
12
- # Dotfiles (v0.2.469)
13
-
14
- Simply designed to fit your shell life 🐚
15
-
16
- ![Dotfiles banner][banner]
17
-
18
- ## 🆄🅿🅳🅰🆃🅴 🅰🅻🅸🅰🆂🅴🆂
19
-
20
- This code provides a set of aliases for updating various software on
21
- macOS and Linux.
22
-
23
- ### macOS
24
-
25
- - `upd` updates macOS software, Homebrew packages, Homebrew Casks, Mac
26
- App Store apps, Rust stable toolchain, Ruby gems, Python packages,
27
- and Node.js packages.
28
-
29
- ### Linux
30
-
31
- - `open` opens a file or URL in the user's preferred application.
32
- - `pbcopy` copies to clipboard.
33
- - `pbpaste` pastes from clipboard.
34
- - `upd` updates Linux packages, cleans up package cache, updates pnpm
35
- packages, updates Rust stable toolchain, updates Ruby gems, updates
36
- Python packages, and updates Node.js packages.
37
-
38
- [banner]: https://kura.pro/dotfiles/v2/images/titles/title-dotfiles.svg