@icarusmx/creta 1.5.17 → 1.5.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,564 @@
1
+ # Understanding LazyVim Plugin Architecture
2
+
3
+ <!-- vim: set foldmethod=marker foldlevel=0: -->
4
+
5
+ ## 📖 LazyVim Reading Guide {{{
6
+
7
+ **Start with:** `zM` (close all folds) → Navigate with `za` (toggle fold)
8
+
9
+ **Keys for navigation:**
10
+ - `}` - Jump to next section
11
+ - `{` - Jump to previous section
12
+ - `zM` - Close all folds (overview mode)
13
+ - `zR` - Open all folds (detailed mode)
14
+
15
+ }}}
16
+
17
+ ## 🎯 Purpose {{{
18
+
19
+ **What:** Understand your LazyVim plugin configuration structure
20
+ **Why:** Know where to add/modify plugins without breaking your setup
21
+ **Time:** 20 minutes
22
+ **Level:** 🟡 Intermediate
23
+
24
+ **Entrypoint for ariadna nvim configuration:**
25
+ `~/.config/nvim/lua/plugins/`
26
+
27
+ Each `.lua` file = one plugin configuration (auto-loaded by LazyVim)
28
+
29
+ }}}
30
+
31
+ ## Plugin Configuration Locations {{{
32
+
33
+ ### Two Important Directories {{{
34
+
35
+ 1. **`~/.config/nvim/lua/config/`** - LazyVim core settings
36
+ - `lazy.lua` - Plugin manager setup
37
+ - `options.lua` - Vim options (tab width, line numbers, etc)
38
+ - `keymaps.lua` - Custom keybindings
39
+ - `autocmds.lua` - Auto-commands (events)
40
+
41
+ 2. **`~/.config/nvim/lua/plugins/`** - Your plugin overrides
42
+ - Each file adds/modifies plugins
43
+ - Auto-loaded alphabetically
44
+ - This is where YOU make changes
45
+
46
+ }}}
47
+
48
+ ### Current Plugin Files {{{
49
+
50
+ ```bash
51
+ ~/.config/nvim/lua/plugins/
52
+ ├── colorscheme.lua # Theme (Catppuccin Latte)
53
+ ├── example.lua # Reference examples (disabled)
54
+ ├── markdown.lua # Markdown rendering + Glow preview
55
+ ├── neo-tree.lua # File explorer filters
56
+ ├── svelte.lua # Svelte support
57
+ └── telescope_noignore.lua # Search hidden/ignored files
58
+ ```
59
+
60
+ }}}
61
+
62
+ }}}
63
+
64
+ ## Part 1: Color Scheme Configuration {{{
65
+
66
+ ### File: `colorscheme.lua` {{{
67
+
68
+ **Location:** `~/.config/nvim/lua/plugins/colorscheme.lua`
69
+
70
+ **Purpose:** Override LazyVim's default theme
71
+
72
+ **Current Setup:**
73
+ ```lua
74
+ return {
75
+ {
76
+ "catppuccin/nvim",
77
+ name = "catppuccin",
78
+ priority = 1000,
79
+ opts = {
80
+ flavour = "latte", -- Light theme
81
+ transparent_background = true, -- See terminal bg
82
+ color_overrides = {
83
+ latte = {
84
+ blue = "#1e66f5", -- Vibrant blues
85
+ },
86
+ },
87
+ },
88
+ },
89
+ {
90
+ "LazyVim/LazyVim",
91
+ opts = {
92
+ colorscheme = "catppuccin",
93
+ },
94
+ },
95
+ }
96
+ ```
97
+
98
+ **To change theme:**
99
+ 1. Edit this file
100
+ 2. Save
101
+ 3. Run `:Lazy sync` in nvim
102
+ 4. Restart nvim
103
+
104
+ }}}
105
+
106
+ ### Practice: Try Different Flavors {{{
107
+
108
+ Catppuccin has 4 flavors. Try changing `flavour = "latte"` to:
109
+
110
+ - `"latte"` - Light (current)
111
+ - `"frappe"` - Light-ish
112
+ - `"macchiato"` - Dark-ish
113
+ - `"mocha"` - Dark
114
+
115
+ **Exercise:**
116
+ 1. Open `~/.config/nvim/lua/plugins/colorscheme.lua`
117
+ 2. Change `flavour = "mocha"`
118
+ 3. Save (`:w`)
119
+ 4. Quit nvim (`:q`)
120
+ 5. Reopen nvim
121
+ 6. Notice the dark theme
122
+ 7. Change back to `"latte"` if you prefer light
123
+
124
+ }}}
125
+
126
+ }}}
127
+
128
+ ## Part 2: Markdown Workflow {{{
129
+
130
+ ### File: `markdown.lua` {{{
131
+
132
+ **Two plugins for different needs:**
133
+
134
+ 1. **render-markdown.nvim** - Inline preview
135
+ - Auto-renders when you open `.md` files
136
+ - Shows formatted headings, code blocks, bullets
137
+ - Works in normal mode (not insert)
138
+
139
+ 2. **glow.nvim** - Full preview
140
+ - Press `Shift+L` to open terminal preview
141
+ - Better for reviewing whole documents
142
+ - Dark theme, 120 char width
143
+
144
+ **When to use which:**
145
+ - Editing docs → render-markdown (always on)
146
+ - Reviewing docs → Shift+L for glow
147
+ - Presenting docs → Shift+L for clean view
148
+
149
+ }}}
150
+
151
+ ### Practice: Test Markdown Preview {{{
152
+
153
+ **Exercise:**
154
+ 1. Create a test markdown file: `nvim ~/test-doc.md`
155
+ 2. Type this content:
156
+
157
+ ```markdown
158
+ # Test Document
159
+
160
+ This is a **bold** paragraph with some *italic* text.
161
+
162
+ ## Code Example
163
+
164
+ ```javascript
165
+ console.log("Hello from markdown!");
166
+ ```
167
+
168
+ - Bullet one
169
+ - Bullet two
170
+ ```
171
+
172
+ 3. Save (`:w`) and notice render-markdown formatting
173
+ 4. Press `Shift+L` to see Glow preview
174
+ 5. Press `q` to exit Glow
175
+ 6. Delete the test file: `:!rm %`
176
+
177
+ }}}
178
+
179
+ }}}
180
+
181
+ ## Part 3: Project-Specific Configs {{{
182
+
183
+ ### File: `neo-tree.lua` {{{
184
+
185
+ **Hides config clutter from file explorer**
186
+
187
+ Files hidden:
188
+ - `eslint.config.js`
189
+ - `jsconfig.json`
190
+ - `vite.config.js`
191
+ - `svelte.config.js`
192
+ - `package-lock.json`
193
+ - `.prettierrc`, `.prettierignore`
194
+ - `.npmrc`, `.gitignore`
195
+
196
+ **Why:** Keep file tree focused on actual code
197
+
198
+ **To modify:**
199
+ Add filenames to the `hide_by_name` and `never_show` arrays.
200
+
201
+ }}}
202
+
203
+ ### File: `svelte.lua` {{{
204
+
205
+ **Sets up Svelte development:**
206
+
207
+ 1. Treesitter parsers: svelte, html, css, js, ts
208
+ 2. Svelte LSP with Svelte 5 support
209
+ 3. Disables annoying a11y warnings
210
+
211
+ **Critical for icarus.mx work**
212
+
213
+ **The config:**
214
+ ```lua
215
+ return {
216
+ -- Treesitter parsers
217
+ {
218
+ "nvim-treesitter/nvim-treesitter",
219
+ opts = function(_, opts)
220
+ vim.list_extend(opts.ensure_installed, {
221
+ "svelte", "html", "css", "javascript", "typescript",
222
+ })
223
+ end,
224
+ },
225
+ -- LSP support
226
+ {
227
+ "neovim/nvim-lspconfig",
228
+ opts = {
229
+ servers = {
230
+ svelte = {
231
+ settings = {
232
+ svelte = {
233
+ plugin = {
234
+ svelte = {
235
+ compilerWarnings = {
236
+ ["a11y-autofocus"] = "ignore",
237
+ ["a11y-click-events-have-key-events"] = "ignore",
238
+ },
239
+ },
240
+ },
241
+ },
242
+ },
243
+ },
244
+ },
245
+ },
246
+ },
247
+ }
248
+ ```
249
+
250
+ }}}
251
+
252
+ ### File: `telescope_noignore.lua` {{{
253
+
254
+ **Overrides LazyVim defaults to search EVERYTHING:**
255
+
256
+ - `--hidden` - Search dotfiles
257
+ - `--no-ignore` - Search node_modules, .git, etc.
258
+ - Shows gitignored files in neo-tree
259
+
260
+ **When you need it:**
261
+ - Finding files in node_modules
262
+ - Debugging .git issues
263
+ - Exploring hidden config files
264
+
265
+ **The config:**
266
+ ```lua
267
+ return {
268
+ {
269
+ "nvim-telescope/telescope.nvim",
270
+ opts = function(_, opts)
271
+ opts.defaults = vim.tbl_deep_extend("force", opts.defaults or {}, {
272
+ vimgrep_arguments = {
273
+ "rg", "--color=never", "--no-heading",
274
+ "--with-filename", "--line-number", "--column",
275
+ "--smart-case", "--hidden", "--no-ignore",
276
+ },
277
+ })
278
+ opts.pickers = vim.tbl_deep_extend("force", opts.pickers or {}, {
279
+ find_files = {
280
+ find_command = { "rg", "--files", "--hidden", "--no-ignore" },
281
+ },
282
+ })
283
+ end,
284
+ },
285
+ }
286
+ ```
287
+
288
+ }}}
289
+
290
+ }}}
291
+
292
+ ## Part 4: Adding New Plugins {{{
293
+
294
+ ### The Pattern {{{
295
+
296
+ **Create a new file:** `~/.config/nvim/lua/plugins/my-plugin.lua`
297
+
298
+ ```lua
299
+ return {
300
+ {
301
+ "author/plugin-name",
302
+ opts = {
303
+ -- plugin options here
304
+ },
305
+ },
306
+ }
307
+ ```
308
+
309
+ **LazyVim automatically loads it** - no imports needed!
310
+
311
+ }}}
312
+
313
+ ### Example: Add GitHub Copilot {{{
314
+
315
+ **File:** `~/.config/nvim/lua/plugins/copilot.lua`
316
+
317
+ ```lua
318
+ return {
319
+ {
320
+ "zbirenbaum/copilot.lua",
321
+ cmd = "Copilot",
322
+ event = "InsertEnter",
323
+ opts = {
324
+ suggestion = { enabled = true, auto_trigger = true },
325
+ panel = { enabled = true },
326
+ },
327
+ },
328
+ }
329
+ ```
330
+
331
+ Save → `:Lazy sync` → Restart → Done
332
+
333
+ }}}
334
+
335
+ ### Example: Add a File Icon Theme {{{
336
+
337
+ **File:** `~/.config/nvim/lua/plugins/devicons.lua`
338
+
339
+ ```lua
340
+ return {
341
+ {
342
+ "nvim-tree/nvim-web-devicons",
343
+ opts = {
344
+ override = {
345
+ md = {
346
+ icon = "📝",
347
+ color = "#519aba",
348
+ name = "Markdown",
349
+ },
350
+ },
351
+ },
352
+ },
353
+ }
354
+ ```
355
+
356
+ This changes the markdown file icon in neo-tree and telescope.
357
+
358
+ }}}
359
+
360
+ ### Practice: Add Your Own Plugin {{{
361
+
362
+ **Exercise: Add a TODO comment highlighter**
363
+
364
+ 1. Create the file:
365
+ ```bash
366
+ nvim ~/.config/nvim/lua/plugins/todo-comments.lua
367
+ ```
368
+
369
+ 2. Add this config:
370
+ ```lua
371
+ return {
372
+ {
373
+ "folke/todo-comments.nvim",
374
+ dependencies = { "nvim-lua/plenary.nvim" },
375
+ opts = {
376
+ signs = true,
377
+ keywords = {
378
+ TODO = { icon = "✓", color = "info" },
379
+ HACK = { icon = "⚠", color = "warning" },
380
+ WARN = { icon = "⚠", color = "warning" },
381
+ NOTE = { icon = "ℹ", color = "hint" },
382
+ },
383
+ },
384
+ },
385
+ }
386
+ ```
387
+
388
+ 3. Save and run `:Lazy sync`
389
+ 4. Restart nvim
390
+ 5. Try it in a JavaScript file:
391
+
392
+ ```javascript
393
+ // TODO: This will be highlighted
394
+ // HACK: So will this
395
+ // NOTE: And this too
396
+ ```
397
+
398
+ 6. Search todos with `:TodoTelescope`
399
+
400
+ }}}
401
+
402
+ }}}
403
+
404
+ ## Part 5: Understanding Plugin Loading {{{
405
+
406
+ ### How LazyVim Loads Plugins {{{
407
+
408
+ When nvim starts:
409
+
410
+ 1. Reads `~/.config/nvim/lua/config/lazy.lua`
411
+ 2. This file tells Lazy.nvim to load all files in `plugins/`
412
+ 3. Each `.lua` file returns a table of plugin specs
413
+ 4. Lazy.nvim merges all specs together
414
+ 5. Plugins install/load based on events (`VeryLazy`, `InsertEnter`, etc.)
415
+
416
+ **Key insight:** Files in `plugins/` don't need to import each other. They're all loaded automatically.
417
+
418
+ }}}
419
+
420
+ ### Plugin Loading Events {{{
421
+
422
+ Common events you'll see:
423
+
424
+ - `VeryLazy` - Load after startup (most plugins)
425
+ - `InsertEnter` - Load when entering insert mode
426
+ - `BufRead` - Load when reading a buffer
427
+ - `FileType` - Load for specific file types
428
+ - `cmd` - Load when command is run
429
+
430
+ **Example:**
431
+ ```lua
432
+ return {
433
+ {
434
+ "ellisonleao/glow.nvim",
435
+ cmd = "Glow", -- Only loads when :Glow is run
436
+ ft = { "markdown" }, -- Only for .md files
437
+ },
438
+ }
439
+ ```
440
+
441
+ This keeps nvim startup fast!
442
+
443
+ }}}
444
+
445
+ ### Overriding vs Extending {{{
446
+
447
+ **Overriding** - Replace default config:
448
+ ```lua
449
+ opts = {
450
+ theme = "latte", -- Replaces entire opts table
451
+ }
452
+ ```
453
+
454
+ **Extending** - Add to default config:
455
+ ```lua
456
+ opts = function(_, opts)
457
+ vim.list_extend(opts.ensure_installed, {
458
+ "svelte", -- Adds to existing list
459
+ })
460
+ end
461
+ ```
462
+
463
+ **Use `opts = function` when you want to keep LazyVim defaults.**
464
+
465
+ }}}
466
+
467
+ }}}
468
+
469
+ ## Part 6: Debugging Plugin Issues {{{
470
+
471
+ ### Common Issues {{{
472
+
473
+ **1. Plugin not loading**
474
+ ```vim
475
+ :Lazy " Open Lazy.nvim UI
476
+ :Lazy log " Check for errors
477
+ :Lazy sync " Force re-sync
478
+ ```
479
+
480
+ **2. Config not applying**
481
+ - Did you save the file?
482
+ - Did you restart nvim?
483
+ - Did you run `:Lazy sync`?
484
+
485
+ **3. Conflicting configs**
486
+ - Check if another file overrides the same plugin
487
+ - LazyVim loads files alphabetically
488
+ - Later files can override earlier ones
489
+
490
+ }}}
491
+
492
+ ### Useful Commands {{{
493
+
494
+ ```vim
495
+ :Lazy " Open plugin manager UI
496
+ :Lazy update " Update all plugins
497
+ :Lazy sync " Install/update/clean plugins
498
+ :Lazy clean " Remove unused plugins
499
+ :Lazy profile " See plugin load times
500
+ :Lazy log " View error logs
501
+
502
+ :checkhealth " Check nvim health
503
+ :LspInfo " Check LSP status
504
+ :Mason " Manage LSP/formatters
505
+ ```
506
+
507
+ }}}
508
+
509
+ ### Practice: Debug a Plugin {{{
510
+
511
+ **Exercise:**
512
+
513
+ 1. Open Lazy UI: `:Lazy`
514
+ 2. Press `p` to see profile (load times)
515
+ 3. Press `l` to see logs
516
+ 4. Find the `catppuccin` plugin
517
+ 5. Press `?` to see help
518
+ 6. Press `q` to close
519
+
520
+ This UI shows you:
521
+ - Which plugins are installed
522
+ - Load order and timing
523
+ - Error messages
524
+ - Update status
525
+
526
+ }}}
527
+
528
+ }}}
529
+
530
+ ## 🎯 Outcomes {{{
531
+
532
+ After this exercise, you can:
533
+
534
+ ✅ Find where your plugins are configured
535
+ ✅ Modify existing plugin settings
536
+ ✅ Add new plugins without breaking LazyVim
537
+ ✅ Understand the difference between `config/` and `plugins/`
538
+ ✅ Know your Neovim ariadna entrypoint: `~/.config/nvim/lua/plugins/`
539
+ ✅ Debug plugin issues using `:Lazy` commands
540
+ ✅ Extend vs override plugin configs
541
+ ✅ Use lazy loading for fast startup
542
+
543
+ **Next Steps:**
544
+ - Explore `example.lua` for more patterns
545
+ - Try adding a plugin you've been wanting
546
+ - Customize keybindings in a new plugin file
547
+ - Browse LazyVim extras: `:LazyExtras`
548
+
549
+ }}}
550
+
551
+ ## 🧭 Reference Links {{{
552
+
553
+ - LazyVim docs: https://lazyvim.org
554
+ - Lazy.nvim plugin manager: https://github.com/folke/lazy.nvim
555
+ - Catppuccin theme: https://github.com/catppuccin/nvim
556
+ - Plugin examples: `~/.config/nvim/lua/plugins/example.lua`
557
+ - LazyVim plugins list: https://www.lazyvim.org/plugins
558
+
559
+ **Your actual config:**
560
+ - Main directory: `~/.config/nvim/`
561
+ - Plugin configs: `~/.config/nvim/lua/plugins/`
562
+ - Core settings: `~/.config/nvim/lua/config/`
563
+
564
+ }}}
@@ -112,6 +112,12 @@ Each phase builds on knowledge from previous phases.
112
112
  **Time:** Design exercise
113
113
  **Level:** 🔴 Advanced
114
114
 
115
+ ### 15. [Understanding LazyVim Plugin Architecture](./15-nvim-plugin-architecture.md)
116
+ **What:** Master your Neovim plugin configuration structure
117
+ **Why:** Add/modify plugins without breaking your setup
118
+ **Time:** 20 minutes
119
+ **Level:** 🟡 Intermediate
120
+
115
121
  ---
116
122
 
117
123
  ## 🎯 How to Use These Guides
@@ -153,6 +159,10 @@ Prefer to browse by subject?
153
159
  - [Shell Aliases](./13-shell-aliases.md)
154
160
  - [curl + Pipes](./06-curl-and-pipes.md)
155
161
 
162
+ ### Neovim Configuration
163
+ - [Developing Muscle Memory for Neovim](./01-developing-muscle-for-nvim.md)
164
+ - [Understanding LazyVim Plugin Architecture](./15-nvim-plugin-architecture.md)
165
+
156
166
  ### JavaScript & Development
157
167
  - [Array & Object Manipulation](./04-array-object-manipulation.md)
158
168
  - [SvelteKit First Steps](./05-svelte-first-steps.md)
@@ -170,6 +180,7 @@ Prefer to browse by subject?
170
180
 
171
181
  ### Meta/Tooling
172
182
  - [Install Skills Command](./12-install-skills.md)
183
+ - [Understanding LazyVim Plugin Architecture](./15-nvim-plugin-architecture.md)
173
184
 
174
185
  ---
175
186
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icarusmx/creta",
3
- "version": "1.5.17",
3
+ "version": "1.5.18",
4
4
  "description": "Salgamos de este laberinto.",
5
5
  "type": "module",
6
6
  "bin": {