Remove unused packages and update external dependencies

This commit is contained in:
Maciej 2021-12-25 23:35:49 +02:00
parent 5fe55c429f
commit ef45da674c
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
4 changed files with 39 additions and 76 deletions

View file

@ -1,13 +0,0 @@
;;; macros -- summary
;;; Commentary:
;;; Code:
(defmacro -> (&rest body)
"Clojure -> macro for BODY."
(let ((result (pop body)))
(dolist (form body result)
(setq result (append (list (car form) result)
(cdr form))))))
(provide '+custom-pkg-macros)
;;; macros ends here

View file

@ -1,23 +0,0 @@
;;; term.el --- summary
;; Author: Maciej Szlosarczyk
;; Maintainer: Maciej Szlosarczyk
;; Version: 0.1-snapshot
;;; Commentary:
;; Proper terminal in Emacs
;;; Code:
(require '+custom-pkg-keys-mode "$HOME/.emacs.d/pkg/keys-mode.el")
;; Create new terminal
(defun start-term ()
"Start Eshell terminal session."
(interactive)
(eshell))
(define-key +custom-keys-mode-map (kbd "<f12>") 'start-term)
(provide '+custom-pkg-term)
;;; term.el ends here