mirror of
https://github.com/Xevion/dotfiles.git
synced 2025-12-06 01:14:48 -06:00
- Add comprehensive CLAUDE.md with chezmoi best practices and AI assistant guidelines - Restructure TODO.md with prioritized tasks and detailed organization - Add PowerShell profile template for Windows platform support - Split git configs into identity-specific templates (ryan/xevion) - Convert nushell env.nu and gitconfig to templates for cross-platform rendering - Refactor chezmoi hooks to TypeScript (.init_pre.ts, .update_pre.ts) - Update .chezmoiignore with better platform-specific file handling - Remove deprecated shellchecker.sh and tasks.json from VS Code config - Add mise integration to shell configs (bash, zsh, nushell, PowerShell) - Clean up commonrc.sh.tmpl WSL-specific code - Disable Deno in VS Code settings, enable simple dialog mode - Add nushell extension recommendation to VS Code This commit establishes better cross-platform support (Windows/WSL/Linux), improves documentation for future maintenance, and standardizes configuration management patterns across the repository.
25 lines
796 B
JSON
25 lines
796 B
JSON
{
|
|
// .tmpl files are Go templates (see text/template pkg)
|
|
"files.associations": {
|
|
"dot_*rc": "shellscript",
|
|
"dot_*rc.tmpl": "shellscript",
|
|
"*.sh.tmpl": "shellscript",
|
|
".chezmoiignore": "ignore",
|
|
"*.nu.tmpl": "nushell",
|
|
"*.json.tmpl": "json",
|
|
"*.toml.tmpl": "toml",
|
|
"*.yaml.tmpl": "yaml",
|
|
"*.cfg.tmpl": "ini",
|
|
"*bash_aliases*": "shellscript",
|
|
"*dot_profile*": "shellscript",
|
|
"*dot_gitconfig*": "ini"
|
|
},
|
|
// Since we're using the Go template syntax, we don't want formatters to mess with it (https://github.com/microsoft/vscode/issues/35350)
|
|
"editor.formatOnSave": false,
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnType": false,
|
|
"notebook.formatOnSave.enabled": false,
|
|
"deno.enable": false,
|
|
"files.simpleDialog.enable": true
|
|
}
|