fix(elisp): add lexical-binding comment to all files to suppress new Emacs 31 warnings

I've set `lexical-binding` to `nil` in all Emacs Lisp files to suppress
the warnings introduced in Emacs 31 requiring all elisp files to have a
`lexical-binding` comment.

This retains the default behavior of dynamic binding when no
`lexical-binding` comment is present. With it set to `t` across the
board, various things break, and fixing those is a task for another day.
This commit is contained in:
2025-06-29 12:23:03 +01:00
parent ed5432641a
commit fe6a4e7ce5
267 changed files with 267 additions and 266 deletions

View File

@@ -1,4 +1,4 @@
;;; siren-core-compile.el --- jimeh's Emacs Siren: Compilation.
;;; siren-core-compile.el --- jimeh's Emacs Siren: Compilation. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-custom.el --- jimeh's Emacs Siren: Siren's customizable variables.
;;; siren-core-custom.el --- jimeh's Emacs Siren: Siren's customizable variables. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-editor.el --- jimeh's Emacs Siren: Editor settings.
;;; siren-core-editor.el --- jimeh's Emacs Siren: Editor settings. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-env.el --- jimeh's Emacs Siren: Environment variable setup.
;;; siren-core-env.el --- jimeh's Emacs Siren: Environment variable setup. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-init.el --- jimeh's Emacs Siren: Initialize all the things
;;; siren-core-init.el --- jimeh's Emacs Siren: Initialize all the things -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-keybinds.el --- jimeh's Emacs Siren: Core keybinds support
;;; siren-core-keybinds.el --- jimeh's Emacs Siren: Core keybinds support -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-linux.el --- jimeh's Emacs Siren: Linux specific settings.
;;; siren-core-linux.el --- jimeh's Emacs Siren: Linux specific settings. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-macos.el --- jimeh's Emacs Siren: macOS specific settings.
;;; siren-core-macos.el --- jimeh's Emacs Siren: macOS specific settings. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-modules.el --- jimeh's Emacs Siren: Module loading.
;;; siren-core-modules.el --- jimeh's Emacs Siren: Module loading. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-package-overrides.el --- jimeh's Emacs Siren: Package overrides
;;; siren-core-package-overrides.el --- jimeh's Emacs Siren: Package overrides -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-packages.el --- jimeh's Emacs Siren: Core package setup
;;; siren-core-packages.el --- jimeh's Emacs Siren: Core package setup -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-performance.el --- jimeh's Emacs Siren: Performance tweaks
;;; siren-core-performance.el --- jimeh's Emacs Siren: Performance tweaks -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-themes.el --- jimeh's Emacs Siren: Custom themes.
;;; siren-core-themes.el --- jimeh's Emacs Siren: Custom themes. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-ui.el --- jimeh's Emacs Siren: Emacs UI settings.
;;; siren-core-ui.el --- jimeh's Emacs Siren: Emacs UI settings. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-utils.el --- jimeh's Emacs Siren: Core Siren functions and macros.
;;; siren-core-utils.el --- jimeh's Emacs Siren: Core Siren functions and macros. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-core-vendor.el --- jimeh's Emacs Siren: Module loading.
;;; siren-core-vendor.el --- jimeh's Emacs Siren: Module loading. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,3 +1,4 @@
;; -*- lexical-binding: t; -*-
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.

View File

@@ -1,4 +1,4 @@
;;; early-init.el --- jimeh's Emacs Siren: early init file.
;;; early-init.el --- jimeh's Emacs Siren: early init file. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; init.el --- jimeh's Emacs Siren: init file.
;;; init.el --- jimeh's Emacs Siren: init file. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-chatgpt-shell.el --- jimeh's Emacs Siren: chatgpt-shell configuration.
;;; siren-chatgpt-shell.el --- jimeh's Emacs Siren: chatgpt-shell configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-chatgpt.el --- jimeh's Emacs Siren: chatgpt configuration.
;;; siren-chatgpt.el --- jimeh's Emacs Siren: chatgpt configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-gptel.el --- jimeh's Emacs Siren: gptel configuration.
;;; siren-gptel.el --- jimeh's Emacs Siren: gptel configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-openai-chatgpt.el --- jimeh's Emacs Siren: openai-chatgpt configuration.
;;; siren-openai-chatgpt.el --- jimeh's Emacs Siren: openai-chatgpt configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-auto-complete.el --- jimeh's Emacs Siren: auto-complete configuration.
;;; siren-auto-complete.el --- jimeh's Emacs Siren: auto-complete configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-cape.el --- jimeh's Emacs Siren: cape configuration.
;;; siren-cape.el --- jimeh's Emacs Siren: cape configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-company-prescient.el --- jimeh's Emacs Siren: company-prescient configuration.
;;; siren-company-prescient.el --- jimeh's Emacs Siren: company-prescient configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-company.el --- jimeh's Emacs Siren: company configuration.
;;; siren-company.el --- jimeh's Emacs Siren: company configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-copilot.el --- jimeh's Emacs Siren: copilot configuration.
;;; siren-copilot.el --- jimeh's Emacs Siren: copilot configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-marginalia.el --- jimeh's Emacs Siren: marginalia configuration.
;;; siren-marginalia.el --- jimeh's Emacs Siren: marginalia configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-aliases.el --- jimeh's Emacs Siren: Common aliases
;;; siren-aliases.el --- jimeh's Emacs Siren: Common aliases -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-global-keybindings.el --- jimeh's Emacs Siren: Global keybindings.
;;; siren-global-keybindings.el --- jimeh's Emacs Siren: Global keybindings. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-packages.el --- jimeh's Emacs Siren: avy configuration.
;;; siren-packages.el --- jimeh's Emacs Siren: avy configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-dap.el --- jimeh's Emacs Siren: dap-mode configuration.
;;; siren-dap.el --- jimeh's Emacs Siren: dap-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-debug-map.el --- jimeh's Emacs Siren: debug-map setup.
;;; siren-debug-map.el --- jimeh's Emacs Siren: debug-map setup. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-realgud.el --- jimeh's Emacs Siren: realgud configuration.
;;; siren-realgud.el --- jimeh's Emacs Siren: realgud configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-dash-at-point.el --- jimeh's Emacs Siren: dash-at-point configuration.
;;; siren-dash-at-point.el --- jimeh's Emacs Siren: dash-at-point configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-helpful.el --- jimeh's Emacs Siren: helpful configuration.
;;; siren-helpful.el --- jimeh's Emacs Siren: helpful configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-all-the-icons.el --- jimeh's Emacs Siren: all-the-icons configuration.
;;; siren-all-the-icons.el --- jimeh's Emacs Siren: all-the-icons configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-amx.el --- jimeh's Emacs Siren: amx configuration.
;;; siren-amx.el --- jimeh's Emacs Siren: amx configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-auto-highlight-symbol.el --- jimeh's Emacs Siren: auto-highlight-symbol configuration.
;;; siren-auto-highlight-symbol.el --- jimeh's Emacs Siren: auto-highlight-symbol configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-direnv.el --- jimeh's Emacs Siren: direnv configuration.
;;; siren-direnv.el --- jimeh's Emacs Siren: direnv configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-display-fill-column.el --- jimeh's Emacs Siren: fill-column configuration.
;;; siren-display-fill-column.el --- jimeh's Emacs Siren: fill-column configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-display-indentation.el --- jimeh's Emacs Siren: indent guides setup
;;; siren-display-indentation.el --- jimeh's Emacs Siren: indent guides setup -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-display-line-numbers.el --- jimeh's Emacs Siren: display-line-numbers configuration.
;;; siren-display-line-numbers.el --- jimeh's Emacs Siren: display-line-numbers configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-doom-modeline.el --- jimeh's Emacs Siren: doom-modeline theme.
;;; siren-doom-modeline.el --- jimeh's Emacs Siren: doom-modeline theme. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-edit-server.el --- jimeh's Emacs Siren: edit-server configuration.
;;; siren-edit-server.el --- jimeh's Emacs Siren: edit-server configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-embark.el --- jimeh's Emacs Siren: embark configuration.
;;; siren-embark.el --- jimeh's Emacs Siren: embark configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-envrc.el --- jimeh's Emacs Siren: envrc configuration.
;;; siren-envrc.el --- jimeh's Emacs Siren: envrc configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-evil.el --- jimeh's Emacs Siren: evil configuration.
;;; siren-evil.el --- jimeh's Emacs Siren: evil configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-fussy.el --- jimeh's Emacs Siren: fussy configuration.
;;; siren-fussy.el --- jimeh's Emacs Siren: fussy configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-hideshow.el --- jimeh's Emacs Siren: folding configuration.
;;; siren-hideshow.el --- jimeh's Emacs Siren: folding configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-highlight-indent-guides.el --- jimeh's Emacs Siren: highlight-indent-guides-mode configuration.
;;; siren-highlight-indent-guides.el --- jimeh's Emacs Siren: highlight-indent-guides-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-highlight-indentation.el --- jimeh's Emacs Siren: highlight-indentation-mode configuration.
;;; siren-highlight-indentation.el --- jimeh's Emacs Siren: highlight-indentation-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-highlight-symbol.el --- jimeh's Emacs Siren: highlight-symbol configuration.
;;; siren-highlight-symbol.el --- jimeh's Emacs Siren: highlight-symbol configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-hydra.el --- jimeh's Emacs Siren: hydra-mode configuration.
;;; siren-hydra.el --- jimeh's Emacs Siren: hydra-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-ido.el --- jimeh's Emacs Siren: ido configuration.
;;; siren-ido.el --- jimeh's Emacs Siren: ido configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-ivy.el --- jimeh's Emacs Siren: ivy configuration.
;;; siren-ivy.el --- jimeh's Emacs Siren: ivy configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-minions.el --- jimeh's Emacs Siren: minions configuration.
;;; siren-minions.el --- jimeh's Emacs Siren: minions configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-mise.el --- jimeh's Emacs Siren: mise configuration.
;;; siren-mise.el --- jimeh's Emacs Siren: mise configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-mwim.el --- jimeh's Emacs Siren: mwim configuration.
;;; siren-mwim.el --- jimeh's Emacs Siren: mwim configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-nerd-icons.el --- jimeh's Emacs Siren: nerd-icons configuration.
;;; siren-nerd-icons.el --- jimeh's Emacs Siren: nerd-icons configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-orderless.el --- jimeh's Emacs Siren: orderless configuration.
;;; siren-orderless.el --- jimeh's Emacs Siren: orderless configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-origami.el --- jimeh's Emacs Siren: origami configuration.
;;; siren-origami.el --- jimeh's Emacs Siren: origami configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-prescient.el --- jimeh's Emacs Siren: prescient configuration.
;;; siren-prescient.el --- jimeh's Emacs Siren: prescient configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-rainbow.el --- jimeh's Emacs Siren: rainbow-mode configuration.
;;; siren-rainbow.el --- jimeh's Emacs Siren: rainbow-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-recentf.el --- jimeh's Emacs Siren: recentf configuration.
;;; siren-recentf.el --- jimeh's Emacs Siren: recentf configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-savehist.el --- jimeh's Emacs Siren: savehist configuration.
;;; siren-savehist.el --- jimeh's Emacs Siren: savehist configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-selectrum-prescient.el --- jimeh's Emacs Siren: selectrum-prescient configuration.
;;; siren-selectrum-prescient.el --- jimeh's Emacs Siren: selectrum-prescient configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-selectrum.el --- jimeh's Emacs Siren: selectrum configuration.
;;; siren-selectrum.el --- jimeh's Emacs Siren: selectrum configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-smex.el --- jimeh's Emacs Siren: smex configuration.
;;; siren-smex.el --- jimeh's Emacs Siren: smex configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-snap-indent.el --- jimeh's Emacs Siren: snap-indent configuration.
;;; siren-snap-indent.el --- jimeh's Emacs Siren: snap-indent configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-subword.el --- jimeh's Emacs Siren: subword-mode configuration.
;;; siren-subword.el --- jimeh's Emacs Siren: subword-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-symbol-overlay.el --- jimeh's Emacs Siren: symbol-overlay configuration.
;;; siren-symbol-overlay.el --- jimeh's Emacs Siren: symbol-overlay configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-undo-fu-session.el --- jimeh's Emacs Siren: undo-fu-session configuration.
;;; siren-undo-fu-session.el --- jimeh's Emacs Siren: undo-fu-session configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-undo-fu.el --- jimeh's Emacs Siren: undo-fu configuration.
;;; siren-undo-fu.el --- jimeh's Emacs Siren: undo-fu configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-undo-tree.el --- jimeh's Emacs Siren: undo-tree configuration.
;;; siren-undo-tree.el --- jimeh's Emacs Siren: undo-tree configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-undohist.el --- jimeh's Emacs Siren: undohist configuration.
;;; siren-undohist.el --- jimeh's Emacs Siren: undohist configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-uniquify.el --- jimeh's Emacs Siren: uniquify configuration.
;;; siren-uniquify.el --- jimeh's Emacs Siren: uniquify configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-vertico.el --- jimeh's Emacs Siren: vertico configuration.
;;; siren-vertico.el --- jimeh's Emacs Siren: vertico configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-volatile-highlights.el --- jimeh's Emacs Siren: volatile-highlights-mode configuration.
;;; siren-volatile-highlights.el --- jimeh's Emacs Siren: volatile-highlights-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-vundo.el --- jimeh's Emacs Siren: vundo configuration.
;;; siren-vundo.el --- jimeh's Emacs Siren: vundo configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-which-key.el --- jimeh's Emacs Siren: which-key configuration.
;;; siren-which-key.el --- jimeh's Emacs Siren: which-key configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-whitespace.el --- jimeh's Emacs Siren: whitespace configuration.
;;; siren-whitespace.el --- jimeh's Emacs Siren: whitespace configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-yank-indent.el --- jimeh's Emacs Siren: yank-indent configuration.
;;; siren-yank-indent.el --- jimeh's Emacs Siren: yank-indent configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-clang-format.el --- jimeh's Emacs Siren: clang-format configuration.
;;; siren-clang-format.el --- jimeh's Emacs Siren: clang-format configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-prettier-js.el --- jimeh's Emacs Siren: prettier-js configuration.
;;; siren-prettier-js.el --- jimeh's Emacs Siren: prettier-js configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-reformatter.el --- jimeh's Emacs Siren: reformatter-mode configuration.
;;; siren-reformatter.el --- jimeh's Emacs Siren: reformatter-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-whitespace-cleanup.el --- jimeh's Emacs Siren: whitespace-cleanup-mode configuration.
;;; siren-whitespace-cleanup.el --- jimeh's Emacs Siren: whitespace-cleanup-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-applescript.el --- jimeh's Emacs Siren: applescript-mode configuration.
;;; siren-applescript.el --- jimeh's Emacs Siren: applescript-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-caddyfile.el --- jimeh's Emacs Siren: caddyfile-mode configuration.
;;; siren-caddyfile.el --- jimeh's Emacs Siren: caddyfile-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-coffee.el --- jimeh's Emacs Siren: coffee-mode configuration.
;;; siren-coffee.el --- jimeh's Emacs Siren: coffee-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-conf.el --- jimeh's Emacs Siren: conf-mode configuration.
;;; siren-conf.el --- jimeh's Emacs Siren: conf-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-css.el --- jimeh's Emacs Siren: css-mode configuration.
;;; siren-css.el --- jimeh's Emacs Siren: css-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-csv.el --- jimeh's Emacs Siren: csv configuration.
;;; siren-csv.el --- jimeh's Emacs Siren: csv configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-cucumber.el --- jimeh's Emacs Siren: feature-mode configuration.
;;; siren-cucumber.el --- jimeh's Emacs Siren: feature-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-dart.el --- jimeh's Emacs Siren: dart-mode configuration.
;;; siren-dart.el --- jimeh's Emacs Siren: dart-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-dockerfile.el --- jimeh's Emacs Siren: dockerfile-mode configuration.
;;; siren-dockerfile.el --- jimeh's Emacs Siren: dockerfile-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-emacs-lisp.el --- jimeh's Emacs Siren: emacs-lisp-mode configuration.
;;; siren-emacs-lisp.el --- jimeh's Emacs Siren: emacs-lisp-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-flutter.el --- jimeh's Emacs Siren: flutter-mode configuration.
;;; siren-flutter.el --- jimeh's Emacs Siren: flutter-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

View File

@@ -1,4 +1,4 @@
;;; siren-git-modes.el --- jimeh's Emacs Siren: git-modes-mode configuration.
;;; siren-git-modes.el --- jimeh's Emacs Siren: git-modes-mode configuration. -*- lexical-binding: nil; -*-
;;; Commentary:

Some files were not shown because too many files have changed in this diff Show More