mirror of
https://github.com/SeriousBug/dotfiles
synced 2026-05-01 13:15:00 -05:00
- 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>
18 lines
709 B
Markdown
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.
|
|
|