first commit

This commit is contained in:
2026-02-13 04:20:30 +01:00
commit 2bd6b181f4
159 changed files with 194785 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
;;; sysadm.el --- system administration stuff -*- lexical-binding: t -*-
;;; Commentary:
;; terminal
(use-package eat
:straight (eat :type git
:host codeberg
:repo "akib/emacs-eat"
:files ("*.el" ("term" "term/*.el") "*.texi"
"*.ti" ("terminfo/e" "terminfo/e/*")
("terminfo/65" "terminfo/65/*")
("integration" "integration/*")
(:exclude ".dir-locals.el" "*-tests.el"))))
;; (use-package vterm)
;; developing pkgbuilds for arch linux
(use-package pkgbuild-mode
:commands pkgbuild-mode
:mode "/PKGBUILD$")
(provide 'sysadm)
;;; sysadm.el ends here