org-superstar bullets and new python snippet

This commit is contained in:
Seth Morabito 2022-10-27 14:06:33 -07:00
parent 52bb3f651e
commit 773214d511
2 changed files with 13 additions and 1 deletions

View File

@ -977,7 +977,7 @@
:hook (org-mode . org-superstar-mode)
:config
(setq org-superstar-leading-bullet " "
org-superstar-headline-bullets-list '("•" "‣" "◦" "⁍" "")))
org-superstar-headline-bullets-list '("①" "②" "③" "④" "⑤")))
#+END_SRC
** Perspective

View File

@ -0,0 +1,12 @@
#contributor : Seth Morabito <web@loomcom.com>
#name : python3 boilerplate
#group : python
# --
#!/usr/bin/env python3
def ${1:main}():
${0:pass}
if __name__ == "__main__":
$1()