Editor hints (vim modelines + VSCode associations) for extension-less configs#3
Merged
Conversation
After moving gitconfig/gitignore/gitattributes/npmrc/nix.conf to their XDG locations, none have file extensions anymore, so editors fall back to plain text. Add hints two ways: 1. Vim modelines (top of each file) using the file's native comment syntax: '#' for gitconfig/gitattributes/gitignore/nix.conf, ';' for npmrc. Works in vim/nvim/emacs. 2. .vscode/settings.json with files.associations -- workspace-scoped, activates whenever the repo is opened as a VSCode workspace. Verified git still parses xdg/git/config with the modeline (it's a valid '#' comment line).
Bare paths like 'xdg/git/config' weren't matching reliably in VS Code's files.associations. The **/-prefixed form matches the same path from any depth (still matches from workspace root) and works consistently across VS Code versions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The XDG-relocated config files (xdg/git/{config,attributes,ignore}, xdg/npm/npmrc, xdg/nix/nix.conf) have no extensions, so editors fall back to plain text. Two complementary hints:
🤖 Generated with Claude Code