Skip to content

Commit

Permalink
Update: Improved tree structure (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
sukalaper committed Mar 27, 2024
1 parent a4a7380 commit c069e6f
Showing 1 changed file with 12 additions and 16 deletions.
28 changes: 12 additions & 16 deletions src/routes/docs/config/walkthrough.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,22 +46,18 @@ local result = vim.tbl_deep_extend("force", person, someone)

config structure of the main nvchad repo :
```lua
lua
├── nvchad
│   ├── autocmds.lua
│   ├── mappings.lua
│   ├── options.lua
│ │
│   │── plugins
│ │ ├── init.lua
│ │ └── ui.lua
│ │
│   ├── configs
│      ├── cmp.lua
│       ├── more...
│  
└── nvconfig.lua
├── lua/
│ ├── nvchad/
│ │ ├── autocmds.lua
│ │ ├── mappings.lua
│ │ └── options.lua
│ ├── plugins/
│ │ ├── init.lua
│ │ └── ui.lua
│ └── configs/
│ ├── cmp.lua
│ └── more..
└── nvconfig.lua
```
<br/>
- example module import, `require "nvchad.options"`
Expand Down

0 comments on commit c069e6f

Please sign in to comment.