feat: config moved

This commit is contained in:
landam
2025-09-12 18:20:36 +02:00
commit f7bad57efb
373 changed files with 39942 additions and 0 deletions

View File

@ -0,0 +1,23 @@
;;; dash-functional-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*-
;; Generated by the `loaddefs-generate' function.
;; This file is part of GNU Emacs.
;;; Code:
(add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path)))
;;; End of scraped data
(provide 'dash-functional-autoloads)
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; no-native-compile: t
;; coding: utf-8-emacs-unix
;; End:
;;; dash-functional-autoloads.el ends here

View File

@ -0,0 +1,12 @@
;; -*- no-byte-compile: t; lexical-binding: nil -*-
(define-package "dash-functional" "20250312.1307"
"Collection of useful combinators for Emacs Lisp."
'((dash "2.18.0"))
:url "https://github.com/magnars/dash.el"
:commit "fcb5d831fc08a43f984242c7509870f30983c27c"
:revdesc "fcb5d831fc08"
:keywords '("extensions" "lisp")
:authors '(("Matus Goljer" . "matus.goljer@gmail.com")
("Magnar Sveen" . "magnars@gmail.com"))
:maintainers '(("Matus Goljer" . "matus.goljer@gmail.com")
("Magnar Sveen" . "magnars@gmail.com")))

View File

@ -0,0 +1,54 @@
;;; dash-functional.el --- Collection of useful combinators for Emacs Lisp -*- lexical-binding: t -*-
;; Copyright (C) 2013-2021 Free Software Foundation, Inc.
;; Author: Matus Goljer <matus.goljer@gmail.com>
;; Magnar Sveen <magnars@gmail.com>
;; Package-Version: 20250312.1307
;; Package-Revision: fcb5d831fc08
;; Package-Requires: ((dash "2.18.0"))
;; Keywords: extensions, lisp
;; Homepage: https://github.com/magnars/dash.el
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; *N.B.:* This package has been absorbed, and is therefore made
;; obsolete, by the `dash' package, version 2.18.0.
;;
;; If you maintain a package that depends on `dash-functional', then
;; you should change that to instead depend on `dash' version 2.18.0,
;; and remove all references to `dash-functional'.
;;
;; If you use any packages that depend on `dash-functional', either
;; directly or indirectly, then you will have to wait until all of
;; them have transitioned away from it before you can remove it.
;;
;; For more information on this, see the following URL:
;; `https://github.com/magnars/dash.el/wiki/Obsoletion-of-dash-functional.el'
;;; Code:
(require 'dash)
(eval-and-compile
(let ((msg "Package dash-functional is obsolete; use dash 2.18.0 instead"))
(if (and noninteractive (fboundp 'byte-compile-warn))
(byte-compile-warn msg)
(message "%s" msg))))
(provide 'dash-functional)
;;; dash-functional.el ends here