Fix: starship prompt layout and WSL2 Nerd Fonts documentation#22
Merged
Fix: starship prompt layout and WSL2 Nerd Fonts documentation#22
Conversation
- dotfiles/.zshrc: remove duplicate tmux auto-attach block (lines 166-169); superseded by .zshrc.d/tmux.zsh which uses exec and also skips VSCode terminal - uninstall.sh: add tmux.zsh to ZSHRC_D_FILES so it is cleaned up on uninstall - tests/test_configs.sh: add tmux.zsh to .zshrc.d file existence check - README.md/ja/zh: fix tmux description — remove incorrect "named main" session reference to match actual tmux.zsh behavior - CLAUDE.md: add tmux.zsh to .zshrc.d structure listing; annotate core.sh with tmux.zsh deployment - CHANGELOG.md: add [0.5.0] entry covering kali-style prompt, tmux auto-attach, CI/ShellCheck fixes, and this maintenance cleanup Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
The previous commit inadvertently changed uninstall.sh from 100755 to 100644 (non-executable) due to Windows/WSL filesystem mode handling. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…rd Fonts setup - starship.toml: move $nodejs/$python/$rust/$golang and $cmd_duration before \n so they appear on the first line instead of between the two prompt lines - README.md/ja/zh: add WSL2 note under lsd explaining Nerd Fonts must be installed on the Windows side for icons to render correctly Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…WSL2 - starship.toml: move $git_state to first line so MERGING/REBASING state appears inline instead of on the same line as └─$ - node.zsh: fall back to XDG_RUNTIME_DIR=/tmp when runtime dir does not exist (WSL2 without systemd), preventing fnm multishell symlink errors Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
$nodejs,$python,$rust,$golang) and$cmd_durationwere appearing between the two prompt lines (after\nand before└─$). Moved them to the first line so the prompt renders correctly.Before / After
Before:
After:
Test plan
Cargo.toml— Rust version should appear on the first line└─$always appears alone on the second line🤖 Generated with Claude Code