How do I automatically indent bullets and list numbering

Any time I number or bullet a list, I want to set the page so that they always indent from the standard paragraph so for example

Lets discuss the world events going on today
+ The climate
+ The topography
+ The geology

Thank you for learning

The three items would have the actually numbers (or bullets indented. The output would look like

Lets discuss the world events going on today
___1. The climate
___2. The topography
___3. The geology
Thank you for learning

The ___ are just spaces…Thanks

If I correctly understood your requirements, you are looking for the indent parameter of the enum element function. You can set the indentation with the following set rule

#set enum(indent: 1em)
1 Like

Great that works for all numbering! Is there a function to do the same for bullets?

Yes, see Bullet List Function – Typst Documentation. The set rule would be

#set list(indent: 1em)
1 Like