@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,53 +0,0 @@
1
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
2
- # Made with ♥ in London, UK by Sebastien Rousseau
3
- # Copyright (c) 2015-2025. All rights reserved
4
- # License: MIT
5
-
6
- # 🅲🆄🆁🅻 🅲🅾🅽🅵🅸🅶 - cURL configuration options.
7
-
8
- # Automatically add newline at end of curl response body.
9
- -w "\n"
10
-
11
- # Determine authentication method and use the most secure one.
12
- --anyauth
13
-
14
- # Attempt to resume broken downloads
15
- --continue-at -
16
-
17
- # Wait 60 seconds before timing out.
18
- --connect-timeout 60
19
-
20
- # (HTTP) Request a compressed response using one of the algorithms curl supports, and save the uncompressed document.
21
- --compressed
22
-
23
- # Resolve names to IPV4 addresses only.
24
- --ipv4
25
-
26
- # Follow HTTP redirects.
27
- --location
28
-
29
- # Display progress as a simple progress bar.
30
- --progress-bar
31
-
32
- # When used, this will make curl attempt to figure out the timestamp of the remote file, and if that is available make the local file get that same timestamp.
33
- --remote-time
34
-
35
- # When following a redirect, automatically set the previous URL as referer.
36
- --referer ";auto"
37
-
38
- # Show error messages.
39
- --show-error
40
-
41
- # Require SSL/TLS for the connection. Terminates the connection if the server doesn't support SSL/TLS.
42
- --ssl-reqd
43
-
44
- #trace the time taken. more info here https://everything.curl.dev/usingcurl/verbose/trace
45
- --trace-time
46
-
47
- # Send a fake UA string for the HTTP servers that sniff it.
48
- --user-agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/105.0.1343.53"
49
-
50
- # Some servers don't like requests that are made without a user-agent field, so we provide one.
51
- -H "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8"
52
- -H "Upgrade-Insecure-Requests: 1"
53
- -H "Accept-Language: en-US,en;q=0.8"
@@ -1,24 +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
- export colorflag='-G' # Enable color output
10
-
11
- # Enable colored output from ls, etc. on FreeBSD-based systems
12
- unset LSCOLORS LS_COLORS
13
- export CLICOLOR=1
14
- export CLICOLOR_FORCE=1
15
-
16
- # LSCOLORS
17
- if [[ "${OSTYPE}" == "darwin"* ]]; then
18
- export LSCOLORS="GxFxCxDxbxegedabagaced"
19
- else
20
- export LS_COLORS="di=1;36:ln=1;35:so=1;32:pi=1;33:ex=1;31:bd=34;46:cd=34;43:su=30;41:sg=30;46:tw=30;42:ow=34;43"
21
- fi
22
-
23
- # Tell grep to highlight matches
24
- export GREP_OPTIONS='--color=auto'
@@ -1,43 +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
- ## 🅳🅾🆃🅵🅸🅻🅴🆂 🆅🅰🆁🅸🅰🅱🅻🅴🆂 - Set Dotfiles variables.
9
- # DF_CURRENT_DIR=${PWD} # Current directory.
10
- DF=".dotfiles/" # Dotfiles.
11
- DF_DIR="${HOME}/.dotfiles/" # Dotfiles directory.
12
- DF_BACKUPDIR="${HOME}/dotfiles_backup/" # Backup directory.
13
- DF_DOWNLOADDIR="${HOME}/Downloads" # Download directory.
14
- DF_VERSION="0.2.469" # Dotfiles Version number.
15
- # DF_TIMESTAMP="$(date +%Y-%m-%d_%H-%M-%S)" # Timestamp for backup directory.
16
-
17
- export DF
18
- export DF_BACKUPDIR
19
- export DF_DIR
20
- export DF_DOWNLOADDIR
21
- # export DF_TIMESTAMP
22
- export DF_VERSION
23
-
24
- ## 🅲🅾🅻🅾🆁🆂 - Set colors.
25
- BLACK="$(tput setaf 0)" # Black
26
- BLUE="$(tput bold && tput setaf 4)" # Blue
27
- CYAN="$(tput bold && tput setaf 6)" # Cyan
28
- GREEN="$(tput bold && tput setaf 2)" # Green
29
- NC="$(tput sgr0)" # No Color
30
- PURPLE="$(tput bold && tput setaf 5)" # Purple
31
- RED="$(tput bold && tput setaf 1)" # Red
32
- WHITE="$(tput bold && tput setaf 7)" # White
33
- YELLOW="$(tput bold && tput setaf 3)" # Yellow
34
-
35
- export BLACK
36
- export BLUE
37
- export CYAN
38
- export GREEN
39
- export NC
40
- export PURPLE
41
- export RED
42
- export WHITE
43
- export YELLOW
@@ -1,18 +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
- cmd_vim=$(command -v vim)
9
- if [[ -z ${cmd_vim} ]]; then
10
- export VISUAL="vi"
11
- else
12
- export VISUAL="vim"
13
- fi
14
-
15
- export EDITOR=${VISUAL}
16
- export GIT_EDITOR=${VISUAL}
17
- export SVN_EDITOR=${VISUAL}
18
- export SUDO_EDITOR=${VISUAL}
@@ -1,48 +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
- # Exit early for non-interactive shells
11
- if [[ $- != *i* ]]; then return; fi
12
-
13
- # Set a simple prompt for non-256color, non-Alacritty, and non-Kitty terminals
14
- if [[ ${TERM} != *-256color* && ${TERM} != alacritty* && ${TERM} != *-kitty* ]]; then
15
- PS1='\h \w > '
16
- return
17
- fi
18
-
19
- # Bash prompt configuration
20
- if [[ -n "${BASH_VERSION}" ]]; then
21
- # Define colors
22
- cyan='\[\033[1;96m\]'
23
- green='\[\033[1;92m\]'
24
- purple='\[\033[1;95m\]'
25
- reset='\[\033[0m\]'
26
-
27
- # Set prompt based on OS
28
- if [[ "${OSTYPE}" == "darwin"* ]]; then
29
- PS1="  $(uname)${purple} ❭${reset} ${green}\w${reset} ${cyan}$ ${reset}"
30
- else
31
- PS1=" 🐧 $(uname)${purple} ❭${reset} ${green}\w${reset} ${cyan}$ ${reset}"
32
- fi
33
-
34
- export PS1
35
-
36
- # Zsh prompt configuration
37
- elif [[ -n "${ZSH_VERSION}" ]]; then
38
- if [[ "${OSTYPE}" == "darwin"* ]]; then
39
- PROMPT='  %F{magenta} ❭%f %F{green}%~%f %F{cyan}$ %f'
40
- else
41
- PROMPT=' 🐧 %F{magenta} ❭%f %F{green}%~%f %F{cyan}$ %f'
42
- fi
43
-
44
- # Optional right-side prompt
45
- export RPROMPT='%F{cyan}%T%f'
46
- export PROMPT
47
-
48
- fi
@@ -1,9 +0,0 @@
1
- ---
2
- :backtrace: false
3
- :benchmark: false
4
- :bulk_threshold: 1000
5
- :sources:
6
- - https://rubygems.org/
7
- :update_sources: true
8
- :verbose: true
9
- gem: "--no-ri --no-rdoc"
@@ -1,23 +0,0 @@
1
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
2
- # Made with ♥ in London, UK by Sebastien Rousseau
3
- # Copyright (c) 2015-2025. All rights reserved
4
- # License: MIT
5
-
6
- # 🅸🅽🅿🆄🆃🆁🅲 - Completion options.
7
- set colored-completion-prefix On # Color the common prefix
8
- set colored-stats On # Color the completion stats
9
- set completion-ignore-case on # Ignore case when completing
10
- set completion-prefix-display-length 1 # Show the first character of the common prefix
11
- set completion-query-items 200 # Show all completions
12
- set expand-tilde Off # Expand ~ to $HOME
13
- set horizontal-scroll-mode Off # Disable horizontal scrolling
14
- set mark-directories on # Mark directories with a slash
15
- set mark-modified-lines on # Mark modified lines with a *
16
- set mark-symlinked-directories On # Mark symlinked directories
17
- set mark-symlinked-directories on # Mark symlinks with a @
18
- set menu-complete-display-prefix On # Color the common prefix in menu-complete
19
- set page-completions on # Show completions in a pager
20
- set show-all-if-ambiguous on # Reduce tab completion key presses and show suggestions
21
- set show-all-if-ambiguous on # Show all completions if ambiguous
22
- set show-all-if-unmodified on # Show all completions if unmodified
23
- set visible-stats On # Append char to indicate type
@@ -1,37 +0,0 @@
1
- {
2
- "asi": false,
3
- "bitwise": true,
4
- "boss": true,
5
- "camelcase": true,
6
- "curly": true,
7
- "eqeqeq": true,
8
- "esnext": true,
9
- "esversion": 8,
10
- "forin": true,
11
- "freeze": true,
12
- "immed": true,
13
- "indent": 2,
14
- "iterator":true,
15
- "lastsemic": true,
16
- "latedef": true,
17
- "maxcomplexity": 5,
18
- "maxdepth": 2,
19
- "maxlen": 140,
20
- "maxstatements": 25,
21
- "mocha": true,
22
- "newcap": false,
23
- "noarg": true,
24
- "node": true,
25
- "noempty": true,
26
- "nonbsp": true,
27
- "nonew": true,
28
- "onecase": true,
29
- "quotmark": true,
30
- "regexp": true,
31
- "smarttabs": true,
32
- "strict": true,
33
- "trailing": true,
34
- "undef": true,
35
- "unused": true,
36
- "white": true
37
- }
@@ -1,35 +0,0 @@
1
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
2
- # Made with ♥ in London, UK by Sebastien Rousseau
3
- # Copyright (c) 2015-2025. All rights reserved
4
- # License: MIT
5
-
6
- # 🅽🅰🅽🅾🆁🅲
7
-
8
- # Display
9
- set atblanks # Display trailing blanks
10
- set autoindent # Indent new lines to the previous line's indentation
11
- set backup # Creates backups of your current file.
12
- set boldtext # Display bold text
13
- set bookstyle # Display bookstyle
14
- set casesensitive # Perform case-sensitive searches
15
- set constantshow # Constantly show the cursor position in the status bar
16
- set historylog # Log search and replace strings to `~/.nano_history`
17
- set functioncolor cyan # Color of function names
18
- set keycolor cyan # Color of the key bindings in the help menu
19
- set linenumbers # Show line numbers in front of the text
20
- set mouse # Enable mouse support
21
- set noconvert # Keep original end-of-line formatting
22
- set numbercolor yellow # Set the color of the line numbers
23
- set preserve # Preserve the XON `^Q` and XOFF `^S` keys for the terminal
24
- set showcursor # Show the cursor position
25
- set smarthome # Make the Home key smarter
26
- set softwrap # Enable soft wrapping
27
- set statuscolor black,yellow # Set the color of the status bar
28
- set tabsize 4 # Set the tab size to 4 spaces
29
- set tabstospaces # Convert typed tabs to spaces
30
- set trimblanks # Trim trailing whitespace on save
31
- set titlecolor white,red # Set the color of the title bar
32
- set whitespace "»⋅" # Show whitespace as dots
33
- set wordbounds # Detect word boundaries
34
- set wordchars "_" # Allow underscores in words
35
- set zap # Let `Backspace` and `Delete` keys erase a marked region
@@ -1,37 +0,0 @@
1
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
2
- # Made with ♥ in London, UK by Sebastien Rousseau
3
- # Copyright (c) 2015-2025. All rights reserved
4
- # License: MIT
5
-
6
- # ~/.profile: executed by the command interpreter for login shells.
7
- # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
8
- # exists.
9
- # see /usr/share/doc/bash/examples/startup-files for examples.
10
- # the files are located in the bash-doc package.
11
-
12
- # the default umask is set in /etc/profile; for setting the umask
13
- # for ssh logins, install and configure the libpam-umask package.
14
- #umask 022
15
-
16
- # if running bash
17
- # shellcheck disable=SC2292
18
- if [ -n "${BASH_VERSION}" ]; then
19
- # include .bashrc if it exists
20
- # shellcheck disable=SC2292
21
- if [ -f "${HOME}/.bashrc" ]; then
22
- # shellcheck source=/dev/null
23
- . "${HOME}/.bashrc"
24
- fi
25
- fi
26
-
27
- # set PATH so it includes user's private bin if it exists
28
- if [ -d "${HOME}"/bin ]; then
29
- PATH="${HOME}/bin:${PATH}"
30
- fi
31
-
32
- # set PATH so it includes user's private bin if it exists
33
- if [ -d "${HOME}"/.local/bin ]; then
34
- PATH="${HOME}/.local/bin:${PATH}"
35
- fi
36
- # shellcheck source=/dev/null
37
- . "${HOME}"/.cargo/env
@@ -1,81 +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
-
9
- # Exit early for non-interactive shells
10
- if [[ $- != *i* ]]; then return; fi
11
-
12
- # Check if we're running in a full-featured terminal
13
- if [[ ${TERM} != *-256color* && ${TERM} != alacritty* && ${TERM} != *-kitty* ]]; then
14
- PS1='\h \w > '
15
- return
16
- fi
17
-
18
- # Color definitions
19
- tmux_purple='\[\033[38;5;55m\]' # Purple (#2D1681)
20
- tmux_red='\[\033[38;5;196m\]' # Red (#EB0000)
21
- tmux_blue='\[\033[38;5;33m\]' # Blue (#007ACC)
22
- tmux_white='\[\033[38;5;15m\]' # White (#FFFFFF)
23
- tmux_green='\[\033[38;5;46m\]' # Green for clean git status
24
- tmux_yellow='\[\033[38;5;226m\]' # Yellow for dirty git status
25
- reset='\[\033[0m\]'
26
-
27
- # Git status function for bash
28
- function git_status() {
29
- local branch dirty
30
- if git rev-parse --git-dir > /dev/null 2>&1; then
31
- branch=$(git symbolic-ref --short HEAD 2>/dev/null || git rev-parse --short HEAD)
32
- if [[ -n "$(git status --porcelain 2>/dev/null)" ]]; then
33
- echo "${tmux_yellow}${branch}*${reset}"
34
- else
35
- echo "${tmux_green}${branch}${reset}"
36
- fi
37
- fi
38
- }
39
-
40
- # Function to set up zsh git prompt
41
- function setup_zsh_git() {
42
- autoload -Uz vcs_info
43
- precmd_vcs_info() { vcs_info }
44
- precmd_functions+=( precmd_vcs_info )
45
- setopt prompt_subst
46
-
47
- zstyle ':vcs_info:git:*' formats '%F{46}%b%f'
48
- zstyle ':vcs_info:git:*' actionformats '%F{226}%b%f'
49
- zstyle ':vcs_info:git:*' check-for-changes true
50
- zstyle ':vcs_info:git:*' stagedstr '*'
51
- zstyle ':vcs_info:git:*' unstagedstr '*'
52
- }
53
-
54
- # Bash prompt configuration
55
- if [[ -n "${BASH_VERSION}" ]]; then
56
- if [[ "${OSTYPE}" == "darwin"* ]]; then
57
- PS1="${tmux_blue} macOS ${tmux_purple}❭ ${tmux_white}\w \$(git_status) ${tmux_red}\$ ${reset}"
58
- elif [[ "${OSTYPE}" == "linux"* ]]; then
59
- PS1="${tmux_blue} 🐧 Linux ${tmux_purple}❭ ${tmux_white}\w \$(git_status) ${tmux_red}\$ ${reset}"
60
- elif [[ "${OSTYPE}" == "msys"* || "${OSTYPE}" == "mingw"* ]]; then
61
- PS1="${tmux_blue} 🪟 Windows ${tmux_purple}❭ ${tmux_white}\w \$(git_status) ${tmux_red}\$ ${reset}"
62
- else
63
- PS1="${tmux_blue} 🌐 Unknown ${tmux_purple}❭ ${tmux_white}\w \$(git_status) ${tmux_red}\$ ${reset}"
64
- fi
65
- export PS1
66
-
67
- # Zsh prompt configuration
68
- elif [[ -n "${ZSH_VERSION}" ]]; then
69
- setup_zsh_git
70
-
71
- if [[ "${OSTYPE}" == "darwin"* ]]; then
72
- PROMPT="%F{33} macOS %F{55}❭ %F{15}%~ \${vcs_info_msg_0_} %F{196}\$ %f"
73
- elif [[ "${OSTYPE}" == "linux"* ]]; then
74
- PROMPT="%F{33} 🐧 Linux %F{55}❭ %F{15}%~ \${vcs_info_msg_0_} %F{196}\$ %f"
75
- elif [[ "${OSTYPE}" == "msys"* || "${OSTYPE}" == "mingw"* ]]; then
76
- PROMPT="%F{33} 🪟 Windows %F{55}❭ %F{15}%~ \${vcs_info_msg_0_} %F{196}\$ %f"
77
- else
78
- PROMPT="%F{33} 🌐 Unknown %F{55}❭ %F{15}%~ \${vcs_info_msg_0_} %F{196}\$ %f"
79
- fi
80
- export PROMPT
81
- fi
@@ -1,18 +0,0 @@
1
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
2
- # Made with ♥ in London, UK by Sebastien Rousseau
3
- # Copyright (c) 2015-2025. All rights reserved
4
- # License: MIT
5
-
6
- ## 🅳🅴🅵🅰🆄🅻🆃
7
- set -g default-terminal "screen-256color" # use 256 colors
8
- if 'infocmp -x tmux-256color > /dev/null 2>&1' 'set -g default-terminal "tmux-256color"'
9
-
10
- bind C-a send-prefix -2 # GNU-Screen compatible prefix
11
- set -g history-limit 102400 # Increase history limit
12
- set -g prefix2 C-a # GNU-Screen compatible prefix
13
- set -g set-clipboard on # Copy to system clipboard
14
- set -s escape-time 10 # Faster command sequences
15
- set -s focus-events on # Enable mouse focus events
16
- set -sg repeat-time 600 # Increase repeat timeout
17
- setw -g xterm-keys on # Enable xterm keys
18
- setw -q -g utf8 on # Expect UTF-8 (tmux < 2.2)
@@ -1,30 +0,0 @@
1
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
2
-
3
- # Made with ♥ in London, UK by Sebastien Rousseau
4
-
5
- # Copyright (c) 2015-2025. All rights reserved
6
-
7
- # License: MIT
8
-
9
- ## 🅳🅸🆂🅿🅻🅰🆈
10
-
11
- bind -n C-l send-keys C-l \; run 'sleep 0.2' \; clear-history # clear both screen and history
12
- set -g aggressive-resize on # resize panes automatically when window is resized
13
- set -g base-index 1 # start windows numbering at 1
14
- set -g bell-action none # disable bell
15
- set -g display-panes-time 800 # slightly longer pane indicators display time
16
- set -g display-time 1000 # slightly longer status messages display time
17
- set -g monitor-activity on # monitor for activity
18
- set -g renumber-windows on # renumber windows when a window is closed
19
- set -g set-titles off # set terminal title
20
- set -g status-interval 10 # redraw status line every 10 seconds
21
- set -g visual-activity off # disable visual activity
22
- set -g visual-bell off # disable visual bell
23
- set -g visual-silence off # disable visual silence
24
- setw -g allow-rename off # disable window renaming
25
- setw -g automatic-rename off # disable automatic window renaming
26
- setw -g mode-keys vi # vi mode
27
- setw -g automatic-rename off # rename window to reflect current program
28
- setw -g monitor-activity on # disable monitor for activity
29
- setw -g pane-base-index 1 # make pane numbering consistent with windows
30
- setw -g synchronize-panes off # disable pane synchronization
@@ -1,18 +0,0 @@
1
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
2
- # Made with ♥ in London, UK by Sebastien Rousseau
3
- # Copyright (c) 2015-2025. All rights reserved
4
- # License: MIT
5
-
6
- ## 🅻🅸🅽🆄🆇 🅾🅽🅻🆈
7
- bind -n C-WheelUpPane select-pane -t= \; copy-mode -e \; send-keys -M # scroll up
8
- bind -n WheelDownPane select-pane -t= \; send-keys -M # scroll down
9
- bind -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft= '#{pane_in_mode}' 'send-keys -M' 'select-pane -t=; copy-mode -e; send-keys -M'" # scroll up
10
- bind -T copy-mode-emacs C-WheelDownPane send-keys -X halfpage-down # scroll down half page
11
- bind -T copy-mode-emacs C-WheelUpPane send-keys -X halfpage-up # scroll up half page
12
- bind -T copy-mode-vi C-WheelDownPane send-keys -X halfpage-down # scroll down half page
13
- bind -T copy-mode-vi C-WheelUpPane send-keys -X halfpage-up # scroll up half page
14
- bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -selection c" # copy to system clipboard
15
- bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "xclip -in -selection clipboard" # copy to system clipboard
16
- set -g mouse on # enable mouse
17
- setw -g mode-keys vi # vi mode
18
- unbind -T copy-mode-vi Enter # unbind default Enter
@@ -1,30 +0,0 @@
1
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
2
- # Made with ♥ in London, UK by Sebastien Rousseau
3
- # Copyright (c) 2015-2025. All rights reserved
4
- # License: MIT
5
-
6
- ## 🅽🅰🆅🅸🅶🅰🆃🅸🅾🅽
7
- bind _ split-window -h # split current window horizontally
8
- bind - split-window -v # split current window vertically
9
- bind -r C-h previous-window # select previous window
10
- bind -r C-l next-window # select next window
11
- bind -r h select-pane -L # move left
12
- bind -r j select-pane -D # move down
13
- bind -r k select-pane -U # move up
14
- bind -r l select-pane -R # move right
15
- bind + run 'cut -c3- ~/.tmux.conf | sh -s _maximize_pane "#{session_name}" #D' # maximize current pane
16
- bind < swap-pane -U # swap current pane with the previous one
17
- bind > swap-pane -D # swap current pane with the next one
18
- bind | split-window -h -c "#{pane_current_path}" # split current window horizontally
19
- bind a last -t : # move to last active window
20
- bind BTab switch-client -l # move to last session
21
- bind C-c new-session # create session
22
- bind C-f command-prompt -p find-session 'switch-client -t %%' # find session
23
- bind e neww -n tmux-config "\${EDITOR:-vim} ~/.tmux.conf" # edit configuration
24
- bind m run "cut -c3- ~/.tmux.conf | sh -s _toggle_mouse" # toggle mouse
25
- bind N new-window # create window
26
- bind r source-file ~/.tmux.conf \; display ".tmux.conf reloaded" # reload configuration
27
- bind Tab last-window # move to last active window
28
- bind U run "cut -c3- ~/.tmux.conf | sh -s _urlview #{pane_id}" # urlview
29
- unbind n # unbind default next-window
30
- unbind p # unbind default previous-window
@@ -1,10 +0,0 @@
1
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
2
- # Made with ♥ in London, UK by Sebastien Rousseau
3
- # Copyright (c) 2015-2025. All rights reserved
4
- # License: MIT
5
-
6
- ## 🅿🅰🅽🅴🆂
7
- set-option -g pane-base-index 1 # set first pane to index 1 (not 0) to map more to the keyboard layout...
8
- bind-key q kill-pane # confirm before killing a window or the server
9
- bind -n M-c kill-pane \; select-layout
10
- bind -n M-n split-window \; select-layout
@@ -1,29 +0,0 @@
1
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
2
- # Made with ♥ in London, UK by Sebastien Rousseau
3
- # Copyright (c) 2015-2025. All rights reserved
4
- # License: MIT
5
-
6
- ## 🆃🅷🅴🅼🅴
7
-
8
- # macOS version
9
- if 'uname -s | grep -q Darwin' 'set -g status-left "#[bg=#007ACC]  macOS #S #[bg=#EB0000] #W #[bg=#14222A]"'
10
-
11
- # Linux version
12
- if 'uname -s | grep -q Linux' 'set -g status-left "#[bg=#007ACC] 🐧 Linux #[bg=#EB0000] #W #[bg=#14222A]"'
13
-
14
- # Windows version
15
- if 'uname -s | grep -q MINGW' 'set -g status-left "#[bg=#007ACC] 🪟 Windows #[bg=#EB0000] #W #[bg=#14222A]"'
16
-
17
- # Status bar customisation
18
- set -g status-bg "#2D1681" # Status bar background color (purple)
19
- set -g status-fg "#FFFFFF" # Status bar foreground color (text)
20
- set -g status-interval 5 # Status bar refresh interval in seconds
21
- set -g status-justify centre # Status bar justification (left, right, centre, absolute-left, absolute-right, absolute-centre)
22
- set -g status-left-length 50 # Status bar left length
23
- set -g status-right-length 50 # Status bar right length
24
- set -g status-right "#[fg=#FFFFFF] #[bg=#14222A] ⬛ #I #[bg=#007ACC] #H #[bg=#EB0000] %_d %B %I:%M%p "
25
- set -g window-status-current-format "#[bg=#2D1681]Dotfiles (v0.2.469)" # Current window status format
26
- set -g window-status-current-style "bg=#EB0000" # Current window status style
27
- set -g window-status-separator "" # Window status separator
28
- set-window-option -g clock-mode-colour "#FFFFFF" # Clock mode color
29
- set-window-option -g clock-mode-style 24 # Clock mode style (12, 24)
@@ -1,21 +0,0 @@
1
- # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.469) - <https://dotfiles.io>
2
- # Made with ♥ in London, UK by Sebastien Rousseau
3
- # Copyright (c) 2015-2025. All rights reserved
4
- # License: MIT
5
-
6
- bind r source-file ~/.tmux.conf \; display ".tmux.conf reloaded" \; \
7
- source-file $HOME/.dotfiles/lib/configurations/tmux/default \; \
8
- source-file $HOME/.dotfiles/lib/configurations/tmux/display \; \
9
- source-file $HOME/.dotfiles/lib/configurations/tmux/linux \; \
10
- source-file $HOME/.dotfiles/lib/configurations/tmux/navigation \; \
11
- source-file $HOME/.dotfiles/lib/configurations/tmux/panes \; \
12
- source-file $HOME/.dotfiles/lib/configurations/tmux/panes \; \
13
- source-file $HOME/.dotfiles/lib/configurations/tmux/vi \;
14
-
15
- source-file $HOME/.dotfiles/lib/configurations/tmux/default
16
- source-file $HOME/.dotfiles/lib/configurations/tmux/display
17
- source-file $HOME/.dotfiles/lib/configurations/tmux/linux
18
- source-file $HOME/.dotfiles/lib/configurations/tmux/navigation
19
- source-file $HOME/.dotfiles/lib/configurations/tmux/panes
20
- source-file $HOME/.dotfiles/lib/configurations/tmux/theme
21
- source-file $HOME/.dotfiles/lib/configurations/tmux/vi