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