Update README.md

This commit is contained in:
2026-07-29 21:26:53 -05:00
parent 13e26f720d
commit c65b1272e2
+57 -22
View File
@@ -1,38 +1,73 @@
# ZSH Plugin and Theme # Cole's Dotfiles
The key to this setup is [GNU `stow`](https://www.gnu.org/software/stow/) a symlink manager. `stow` allows you to easily link the files in the repo directly to where these files would be in your home directory originally.
I prefer to manually install the my zsh theme and plugins. I like to the `~/.zsh` directory to store the repos of any dependencies I bring into my config. Personal dotfiles for zsh, Neovim, and opencode, plus a few shell scripts. The setup is managed with [GNU `stow`](https://www.gnu.org/software/stow/), a symlink manager that links the files in this repo to their corresponding locations under the home directory.
# Prerequisites The zsh theme and plugins are installed manually rather than through a plugin manager. The `~/.zsh` directory is used to hold the git repos of any shell dependencies.
## GNU `stow` ## Repository layout
Install `stow` with your system's package manager.
## Nerd Fonts ```text
Make sure you get a nerd font [installed](https://github.com/ryanoasis/nerd-fonts) and [configured](https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#meslo-nerd-font-patched-for-powerlevel10k) for your terminal emulators, text editors, and IDEs of choice. .
├── .zshrc # zsh config: PATH, history, completions, prompt, aliases
## Powerlevel10k ├── .config/
│ ├── nvim/ # Neovim config (init.lua, lua/, after/, queries/)
```sh │ └── opencode/ # opencode config (agents, skills, plugins, rules)
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.zsh/powerlevel10k └── .scripts/ # Standalone shell scripts (on $PATH)
└── hello.sh
``` ```
## zsh-autosuggestions Everything above is relative to the home directory, which is exactly what `stow .` expects.
## Prerequisites
### Required
- **GNU `stow`** — install with the system package manager (`brew install stow`, `apt install stow`, etc.).
- **A Nerd Font** — [install](https://github.com/ryanoasis/nerd-fonts) one and [configure](https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#meslo-nerd-font-patched-for-powerlevel10k) it in the terminal, editor, and IDE of choice. Required for icons in the prompt and `lsd`.
### Shell theme and plugins
Clone into `~/.zsh/` so `.zshrc` picks them up automatically:
```sh ```sh
git clone --depth=1 https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.zsh/powerlevel10k
git clone --depth=1 https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions
``` ```
# Configure a New Machine ### Optional
1. Clone this repository to your home directory
- **`lsd`** — drives the `ls`/`ll`/`lt` aliases in `.zshrc`. Without it, the aliases fall back to the system `ls`. ([github.com/lsd-rs/lsd](https://github.com/lsd-rs/lsd))
## Configure a new machine
1. Clone into the home directory:
```sh ```sh
git clone https://github.com/cole-maxwell1/dotfiles.git git clone https://github.com/cole-maxwell1/dotfiles.git ~/dotfiles
``` ```
2. Run GNU stow 2. Symlink the dotfiles into place with stow:
```sh ```sh
cd dotfiles && stow . cd ~/dotfiles && stow .
``` ```
3. Make scripts executable for current user 3. Make the scripts executable:
```sh ```sh
chmod -R u+x ~/dotfiles/.scripts/ chmod -R u+x ~/dotfiles/.scripts/
``` ```
4. If this is the first run with Powerlevel10k, generate the prompt config:
```sh
p10k configure
```
5. Restart the shell (or `exec zsh`) to load the new config.
## Unlink or uninstall
To remove the symlinks without deleting the repo:
```sh
cd ~/dotfiles && stow -D .
```
Running `stow .` again re-creates them.
## Secrets
If `~/.secrets` exists, `.zshrc` sources it near the top of the file so environment variables (API keys, tokens, etc.) are exported into the shell. This file is intentionally **not** part of the repo — create it locally and keep it out of version control.