-
Notifications
You must be signed in to change notification settings - Fork 17
Cross-platform reliability fixes for shell configs and git aliases #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
d290d25
a1f28fc
16ab6d9
c186a65
6fbf4d3
66c1a3f
567c7e2
9ea5981
1fb28a5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,7 +50,7 @@ Works on both Intel and Apple Silicon Macs. The script is idempotent and can be | |
| | `Vim/` | Both | Vim config; Neovim uses Lua with LSP, Treesitter, Telescope | | ||
| | `Yazi/` | Both | Yazi file manager configuration | | ||
| | `Zellij/` | Both | Zellij terminal multiplexer configuration | | ||
| | `Zsh/` | macOS | Zsh configuration (standalone) | | ||
| | `Zsh/` | Both | Zsh configuration (standalone) | | ||
|
||
|
|
||
| ### Shell Configuration | ||
|
|
||
|
|
@@ -59,7 +59,7 @@ Both Bash and Zsh source `~/.shell_common` for shared settings: | |
| - PATH configuration | ||
| - Editor setup (auto-detects nvim if available) | ||
|
|
||
| Platform-specific options are in `.bash_aliases` (Linux) and `.zshrc` (macOS). | ||
| Platform-specific options are in `.bash_aliases` (Linux-specific) and `.zshrc` (additional shell-specific configuration). | ||
|
|
||
| ## Individual Scripts | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -5,9 +5,11 @@ if [[ "$OSTYPE" == darwin* ]]; then | |||||||||||
| export BROWSER='open' | ||||||||||||
| fi | ||||||||||||
|
|
||||||||||||
| # Editors | ||||||||||||
| # Editor | ||||||||||||
| export EDITOR='vim' | ||||||||||||
| export VISUAL='vim' | ||||||||||||
| export VISUAL="$EDITOR" | ||||||||||||
|
|
||||||||||||
| # Pager | ||||||||||||
| export PAGER='less' | ||||||||||||
|
|
||||||||||||
|
||||||||||||
| # Editor | |
| export EDITOR='vim' | |
| export VISUAL="$EDITOR" |
Uh oh!
There was an error while loading. Please reload this page.