Emacs Packages
#boxy#emacs
An up-to-date index of all packages I've started.
Boxy, the boxy layout framework
Normally it's not necessary to install it directly. The exception is when trying out an experimental package using straight which relies on boxy, in which case you will need to add this recipe to your config:
(use-package boxy)
Boxy imenu, view imenu as a boxy diagram (experimental)
(use-package boxy-imenu :after boxy :straight (boxy-imenu :type git :host gitlab :repo "tygrdev/boxy-imenu") :config (global-set-key (kbd "M-i") 'boxy-imenu))
Boxy headings, view org files as a boxy diagram
Available on ELPA with M-x package-install RET boxy-headings RET
(use-package boxy-headings :config (define-key org-mode-map (kbd "C-c o") 'boxy-headings)) ;; o for overview
Boxy info, view info manuals as a boxy diagram
(use-package boxy-info :straight (boxy-info :type git :host gitlab :repo "tygrdev/boxy-info") :config (define-key Info-mode-map (kbd "M-i") 'boxy-info))
Org real, keep track of real things as org mode links
Available on ELPA with M-x package-install RET org-real RET
(use-package org-real :config (define-key org-mode-map (kbd "C-c r") 'org-real-world)) ;; r for real
Org ssr, server side rendering in the current directory (experimental)
(use-package org-ssr :straight (org-ssr :type git :host gitlab :repo "tygrdev/org-ssr"))