23 lines
706 B
EmacsLisp
23 lines
706 B
EmacsLisp
;;; 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
|