Refactor: Migrate dotfiles management from homemaker to stow#1
Open
Refactor: Migrate dotfiles management from homemaker to stow#1
Conversation
This commit completes the migration from homemaker to stow for managing your dotfiles.
Key changes:
- All dotfiles previously managed by homemaker or manually are now organized into subdirectories under the `stow/` directory (e.g., `stow/bash`, `stow/git`, `stow/nvim`, `stow/tmux`, `stow/inputrc`, `stow/zsh`).
- The `README.md` has been extensively updated to:
- Remove all references to homemaker and its Go dependency.
- Provide clear instructions for installing stow.
- Detail the `stow` commands needed to link each configuration package.
- Refresh and consolidate dependency installation instructions (e.g., for Neovim, Tmux, general development tools).
- Incorporate setup steps previously found in scripts (e.g., Powerline font installation from `tmux.sh`).
- The `docker/Dockerfile` has been updated to:
- Install `stow`.
- Use `stow` commands to set up dotfiles within the Docker image, replacing the homemaker logic.
- Old files related to the homemaker setup and unused configurations have been removed:
- `install.sh`
- `config.toml`
- `vim.sh`
- `init.vim` and `vimrc` (assuming Neovim is the primary editor; these were not migrated to stow).
- Utility scripts:
- `tmux_init.sh` (a user script) has been moved to `scripts/tmux_init.sh`. The README now advises adding this `scripts` directory to your PATH.
- `tmux.sh` has been deleted as its functionality is now documented in the README.
This change simplifies the dotfile management process, relying on the well-established `stow` utility and providing clearer setup instructions.
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.
This commit completes the migration from homemaker to stow for managing your dotfiles.
Key changes:
stow/directory (e.g.,stow/bash,stow/git,stow/nvim,stow/tmux,stow/inputrc,stow/zsh).README.mdhas been extensively updated to:stowcommands needed to link each configuration package.tmux.sh).docker/Dockerfilehas been updated to:stow.stowcommands to set up dotfiles within the Docker image, replacing the homemaker logic.install.shconfig.tomlvim.shinit.vimandvimrc(assuming Neovim is the primary editor; these were not migrated to stow).tmux_init.sh(a user script) has been moved toscripts/tmux_init.sh. The README now advises adding thisscriptsdirectory to your PATH.tmux.shhas been deleted as its functionality is now documented in the README.This change simplifies the dotfile management process, relying on the well-established
stowutility and providing clearer setup instructions.