You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,16 @@
1
1
# Neovim Config — Claude Instructions
2
2
3
+
## File Placement Rules
4
+
5
+
**`init.lua` is read-only upstream (kickstart.nvim).** You MUST NOT edit it under any circumstances. Doing so causes merge conflicts on upstream updates.
6
+
7
+
All additions MUST go in one of:
8
+
-`after/plugin/options.lua` — vim options and `vim.opt.*` settings
9
+
-`after/plugin/keymaps.lua` — keymaps
10
+
-`after/plugin/gui.lua` — GUI-specific settings
11
+
-`lua/custom/plugins/<name>.lua` — plugin specs and overrides (Lazy.nvim merges these)
12
+
-`lua/custom/` — general custom modules
13
+
3
14
## Keybinding Tips (`lua/custom/keytips.lua`)
4
15
5
16
`keytips.lua` contains a **hand-curated static list** of keybinding tips shown at startup and via `:KeyTip`.
0 commit comments