Move utility packages to their own section

This commit is contained in:
Gergely Polonkai 2023-10-20 09:58:41 +02:00
parent 1ab3596465
commit b66589eb83
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 60 additions and 58 deletions

View File

@ -2649,6 +2649,66 @@ Intended as a value for `bug-referecne-url-format'."
(python-mode . highlight-indentation-mode))
#+end_src
* Utilities
** ~kubernetes~, a kubernetes dashboard
#+begin_src emacs-lisp
(use-package kubernetes
:commands (kubernetes-overview))
#+end_src
** ~elpher~, a Gopher/Gemini client
Gopher is the next generation text protocol. Despite its age (40-ish, as of writing), it still
beats the Web in a lot of aspects.
#+begin_src emacs-lisp
(use-package elpher)
#+end_src
** ~mastodon~
#+begin_src emacs-lisp
(use-package mastodon
:custom
(mastodon-instance-url "https://social.polonkai.eu/")
(mastodon-active-user "gergely"))
#+end_src
** ~twtxt~
#+begin_src emacs-lisp
(use-package twtxt
:custom
(twtxt-file (expand-file-name "NextCloud/twtxt.txt" user-documents-directory))
(twtxt-following '(("benaiah" "https://benaiah.me/twtxt.txt")
("jomo" "https://gist.githubusercontent.com/jomo/64d6bd1b95ec0a24612b/raw/twtxt.txt")
("quite" "https://lublin.se/twtxt.txt")
("xena" "https://xena.greedo.xeserv.us/files/xena.txt"))))
#+end_src
** ~paradox~ for better package management
I dont always use the package menu, but when i do, i want to do it in style…
#+begin_src emacs-lisp
(use-package paradox
:custom
(paradox-lines-per-entry 2)
(paradox-automatically-star t)
(paradox-github-token (nth 1 (auth-source-user-and-password "api.github.com" "gergelypolonkai^paradox")))
:bind
(:map gpolonkai/pers-map
("C-p" . paradox-list-packages)))
#+end_src
** ~tidal~ for improvising music
#+begin_src emacs-lisp
(use-package tidal)
#+end_src
* Custom commands and functions
** Frame manipulation
@ -2699,64 +2759,6 @@ To temporarily hide the mode line.
(c-mode-common . gpolonkai/cond-enable-ggtags-mode))
#+END_SRC
** Kubernetes dashboard
#+BEGIN_SRC emacs-lisp
(use-package kubernetes
:commands (kubernetes-overview))
#+END_SRC
** A Gopher client
Gopher is the next generation text protocol. Despite its age (40-ish, as of writing), it still
beats the Web in a lot of aspects.
#+BEGIN_SRC emacs-lisp
(use-package elpher)
#+END_SRC
** Tidal, for improvising music
#+BEGIN_SRC emacs-lisp
(use-package tidal)
#+END_SRC
** Paradox, for better package management
I dont always use the package menu, but when i do, i want to do it in style…
#+begin_src emacs-lisp
(use-package paradox
:custom
(paradox-lines-per-entry 2)
(paradox-automatically-star t)
(paradox-github-token (nth 1 (auth-source-user-and-password "api.github.com" "gergelypolonkai^paradox")))
:bind
(:map gpolonkai/pers-map
("C-p" . paradox-list-packages)))
#+end_src
** Mastodon
#+begin_src emacs-lisp
(use-package mastodon
:custom
(mastodon-instance-url "https://social.polonkai.eu/")
(mastodon-active-user "gergely"))
#+end_src
** TwTxt
#+begin_src emacs-lisp
(use-package twtxt
:custom
(twtxt-file (expand-file-name "NextCloud/twtxt.txt" user-documents-directory))
(twtxt-following '(("benaiah" "https://benaiah.me/twtxt.txt")
("jomo" "https://gist.githubusercontent.com/jomo/64d6bd1b95ec0a24612b/raw/twtxt.txt")
("quite" "https://lublin.se/twtxt.txt")
("xena" "https://xena.greedo.xeserv.us/files/xena.txt"))))
#+end_src
* Python related setup and ~use-package~ calls
Because, well, thats my job now. Of course it gets a dedicated section.