Agent skill
dotfiles-editing
Help editing vim/tmux/zsh configurations. Use when user mentions "edit vim config", "modify tmux", "change zsh", "add plugin", "customize neovim", "update alias", "init.lua", "vimrc", "tmux.conf", "zshrc", or configuration changes.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/dotfiles-editing
SKILL.md
dotfiles Configuration Editing
vim/tmux/zsh設定の編集とテストを支援する。
File Structure Overview
Neovim
| File | Purpose |
|---|---|
init.lua |
Main entry point |
vim/lua/lazy-config.lua |
Plugin management (lazy.nvim) |
vim/lua/map.lua |
Key mappings |
vim/lua/edit.lua |
Editor settings |
vim/ftplugin/*.vim |
Filetype-specific settings |
vim/snippets/*.snip |
Custom snippets |
tmux
| File | Purpose |
|---|---|
tmux.conf |
Main configuration |
tmux_readme.md |
Keybinding reference |
zsh
| File | Purpose |
|---|---|
zshrc |
Main configuration |
zshenv |
Environment variables |
zsh/alias.zsh |
Shell aliases |
zsh/zinit.zsh |
Plugin management |
For complete file structure, see references/file-structure.md.
Editing Guidelines
Add Neovim Plugin
Edit vim/lua/lazy-config.lua:
{
"author/plugin-name",
config = function()
-- configuration
end,
},
Add tmux Plugin
Edit tmux.conf:
set -g @plugin 'tmux-plugins/plugin-name'
Add Shell Alias
Edit zsh/alias.zsh:
alias name='command'
Add Environment Variable
Edit zshenv:
export VAR_NAME="value"
Testing Changes
Use Docker sandbox to test:
make shell
# Inside container:
source ~/.zshrc # zsh
tmux source ~/.tmux.conf # tmux
:source $MYVIMRC # neovim
Best Practices
- Test changes in Docker before committing
- Add comments explaining configuration intent
- Make incremental changes, test each one
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?