While lsp-tex.el, included by lsp-mode, provides minimal setting for Texlab, lsp-latex.el provides full features of Texlab!
Add an interactive emacs function for dired
buffers, which applies a function on selected files. Comes with some example functions.
Mood-line is a minimal Emacs mode-line configuration that aims to replicate some of the features of the Doom modeline package.
ox-gemini
adds support for exporting Org files in Gemini format. Many things were taken from the ASCII exporter, from which ox-gemini
derives.
Execute Elvish code inside org-mode src blocks. ; Requirements: - The Elvish shell: https://elvish.io/ - The elvish-mode Emacs major mode: https://github.com/ALSchwalm/elvish-mode
Show free keybindings for modkeys or prefixes. Based on code located here: https://gist.github.com/bjorne/3796607 For complete description see https://github.com/Fuco1/free-keys
This package provides functions that extend org-mode which allow it to generate reports used in the scrum software development process, such as a scrum board and burndown chart.
Evil is an extensible vi layer for Emacs. It emulates the main features of Vim, and provides facilities for writing custom extensions. This derivative package fixes the build for emacs28+ versions.
podcaster.el is an podcast client which is derived from syohex's emacs-rebuildfm podcaster.el provides showing podscasts list. Its actions are - Play podcast mp3(requires `avplay or `ffplay or `itunes')
This package builds Emacs with pure GTK, meant for window systems supported by GDK such as Wayland and Broadway. It is recommended that use this package for such systems, unless you use X.
emacs-org-imenu
shows a sidebar displaying the Imenu and allows the user to filter which headlines are shown using the interactive org-imenu-filter-select
that uses the same syntax as org-mode search.
The ef-themes are a collection of light and dark themes for GNU Emacs whose goal is to provide colorful ("pretty") yet legible options for users who want something with a bit more flair than the modus-themes.
This package provides a program is a comint mode for Emacs which allows you to run a compatible javascript REPL like Node.js, Spidermonkey, Rhino inside Emacs. It also defines a few functions for sending JavaScript input to it quickly.
Guru mode teaches you how to use Emacs effectively. In particular it promotes the use of idiomatic keybindings for essential editing commands. It can be configured to either disallow the alternative keybindings completely or to warn when they are being used.
Because Haml's indentation schema is similar to that of YAML and Python, many indentation-related functions are similar to those in yaml-mode and python-mode. To install, save this on your load path and add the following to your .emacs file: (require haml-mode)
This package provides a major mode for editing Rego file (See https://www.openpolicyagent.org/docs/latest/policy-language/ to learn more) in Emacs. Some of its major features include: - syntax highlighting (font lock), - Basic indentation, raw and normal string support - Automatic formatting on save (configurable) - REPL support
This is a very simple metronome for GNU Emacs. To install it from source, add metronome.el to your load path and require it. Then M-x metronome to play/pause, and C-u M-x metronome to set a new tempo. (require metronome) (global-set-key (kbd "C-c C-m") metronome)
Taking inspiration from prefix keys and prefix arguments in Emacs, Transient implements a similar abstraction involving a prefix command, infix arguments and suffix commands. We could call this abstraction a "transient command", but because it always involves at least two commands (a prefix and a suffix) we prefer to call it just a "transient".
Because Sass's indentation schema is similar to that of YAML and Python, many indentation-related functions are similar to those in yaml-mode and python-mode. To install, save this on your load path and add the following to your .emacs file: (require sass-mode) sass-mode requires haml-mode, which can be found at http://github.com/nex3/haml-mode.
This package provides functions to display system notifications for any org-mode deadlines that are due in your agenda. To perform a one-shot check call (org-alert-deadlines). To enable repeated checking call (org-alert-enable) and to disable call (org-alert-disable). You can set the checking interval by changing the org-alert-interval variable to the number of seconds you'd like.
AsciiDoc is a text document format for writing short documents, articles, books and UNIX man pages. AsciiDoc files can be translated to HTML and DocBook markups. adoc-mode is an Emacs major mode for editing AsciiDoc files. It emphasizes on the idea that the document is highlighted so it pretty much looks like the final output. What must be bold is bold, what must be italic is italic etc. Meta characters are naturally still visible, but in a faint way, so they can be easily ignored.
org-board uses `org-attach and `wget to provide a bookmarking and web archival system directly from an Org file. Any `wget switch can be used in `org-board', and presets (like user agents) can be set for easier control. Every snapshot is logged and saved to an automatically generated folder, and snapshots for the same link can be compared using the `ztree package (optional dependency; `ediff used if `zdiff is not available). Arbitrary functions can also be run after an archive, allowing for extensive user customization.
Org-babel support for prolog. To activate ob-prolog add the following to your init.el file: (add-to-list load-path "/path/to/ob-prolog-dir") (org-babel-do-load-languages org-babel-load-languages ((prolog . t))) It is unnecessary to add the directory to the load path if you install using the package manager. In addition to the normal header arguments ob-prolog also supports the :goal argument. :goal is the goal that prolog will run when executing the source block. Prolog needs a goal to know what it is going to execute.