31 lines
805 B
EmacsLisp
31 lines
805 B
EmacsLisp
;;; util.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: abbrev bib c calendar comm convenience data docs emulations extensions faces files frames games hardware help hypermedia i18n internal languages lisp local maint mail matching mouse multimedia news outlines processes terminals tex text tools unix vc wp
|
|
;; Homepage: https://github.com/mikec/util
|
|
;; Package-Requires: ((emacs "30.1"))
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; Commentary:
|
|
;;
|
|
;; Description
|
|
;;
|
|
;;; Code:
|
|
|
|
;; which-key
|
|
(which-key-mode)
|
|
|
|
;; eglot
|
|
|
|
;; treesit
|
|
|
|
(provide 'util)
|
|
;;; util.el ends here
|