Skip to content

Commit e11138d

Browse files
committed
feat: add the me-experimental module
1 parent e8c17d1 commit e11138d

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

modules/me-experimental.el

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
;;; me-experimental.el --- Experimental packages -*- lexical-binding: t; -*-
2+
3+
;; Copyright (C) 2022-2024 Abdelhak Bougouffa
4+
5+
;; Author: Abdelhak Bougouffa (rot13 "nobhtbhssn@srqbencebwrpg.bet")
6+
7+
;;; Commentary:
8+
9+
;;; Code:
10+
11+
12+
;; Highlight inactive code regions with eglot power (mainly C/C++ preprocessor directives)
13+
(use-package eglot-inactive-regions
14+
:straight t
15+
:commands (eglot-inactive-regions-mode))
16+
17+
18+
;; Emacs search engine which combines concepts from information retrievial and Bayesian search theory
19+
(use-package p-search
20+
:straight (:host github :repo "zkry/p-search")
21+
:commands (p-search))
22+
23+
24+
;; Work seamlessly with GitHub gists from Emacs
25+
(use-package igist
26+
:straight t)
27+
28+
29+
(provide 'me-experimental)
30+
;;; me-experimental.el ends here

0 commit comments

Comments
 (0)