1
0
Fork 0
mirror of https://github.com/SeriousBug/dotfiles synced 2026-05-01 05:05:18 -05:00
dotfiles/CLAUDE.md
Kaan Barmore-Genc 87d3529e0d Update tool versions and add less->bat alias
- Add bun 1.3.8 to asdf tool versions
- Add fish function wrapping bat --paging always as less
- Bump htop config to 3.4.1 format, show cached memory, sort by MEM
- Bump lazy.nvim and mini.nvim lockfile commits

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-19 22:22:40 -05:00

18 lines
709 B
Markdown

# Dotfiles Configuration Notes
## Dotter Template Handling
Dotter automatically treats files with `{{` as templates. For files that contain `{{` in their code (like Lua tables), disable templating by setting `type = "symbolic"` in `.dotter/global.toml`.
**Example:**
```toml
[nvim.files."nvim/lua/plugins/hop.lua"]
target = "~/.config/nvim/lua/plugins/hop.lua"
type = "symbolic"
```
## Directory Symlinks in setup.sh
For directories where programs create new files that should be tracked (e.g., fish's `funcsave` command), use the `ensure_dir_symlink` function in `setup.sh` instead of Dotter. This symlinks the entire directory so dynamically created files are automatically tracked in the repository.