new emacs config!

This commit is contained in:
Michael Chalupiak
2026-01-17 02:09:04 -05:00
parent e6a0d0892f
commit 2d1a11ea40
14 changed files with 934 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
;;; apps.el --- Description -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2026 Michael Chalupiak
;;
;; Author: Michael Chalupiak <mikec@archbox>
;; Maintainer: Michael Chalupiak <mikec@archbox>
;; Created: January 16, 2026
;; Modified: January 16, 2026
;; Version: 0.0.1
;; Keywords: Symbols value as variable is void: finder-known-keywords
;; Homepage: https://github.com/mikec/apps
;; Package-Requires: ((emacs "24.3"))
;;
;; This file is not part of GNU Emacs.
;;
;;; Commentary:
;;
;; Description
;;
;;; Code:
(straight-use-package
'(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"))
:defer t))
(add-hook 'eshell-load-hook #'eat-eshell-mode)
(use-package magit
:ensure t
:defer t)
(use-package org
:ensure t
:defer t)
(provide 'apps)
;;; apps.el ends here