Add prisma mode
This commit is contained in:
parent
0f85e9c27c
commit
1d22fea493
1
.emacs.d/early-init.el
Normal file
1
.emacs.d/early-init.el
Normal file
@ -0,0 +1 @@
|
|||||||
|
(setq package-enable-at-startup nil)
|
@ -3,6 +3,22 @@
|
|||||||
#+STARTUP: fold
|
#+STARTUP: fold
|
||||||
|
|
||||||
* Packages
|
* Packages
|
||||||
|
** Straight
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(defvar bootstrap-version)
|
||||||
|
(let ((bootstrap-file
|
||||||
|
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
|
||||||
|
(bootstrap-version 6))
|
||||||
|
(unless (file-exists-p bootstrap-file)
|
||||||
|
(with-current-buffer
|
||||||
|
(url-retrieve-synchronously
|
||||||
|
"https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el"
|
||||||
|
'silent 'inhibit-cookies)
|
||||||
|
(goto-char (point-max))
|
||||||
|
(eval-print-last-sexp)))
|
||||||
|
(load bootstrap-file nil 'nomessage))
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
** Melpa
|
** Melpa
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(require 'package)
|
(require 'package)
|
||||||
@ -261,6 +277,15 @@ After installing the ~rust-analyzer~ program, the following can be used:
|
|||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
#+RESULTS:
|
#+RESULTS:
|
||||||
|
**** Prisma
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package prisma-mode
|
||||||
|
:ensure t
|
||||||
|
:straight '(prisma-mode
|
||||||
|
:type git
|
||||||
|
:host github
|
||||||
|
:repo "pimeys/emacs-prisma-mode"))
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
*** Kotlin
|
*** Kotlin
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
Loading…
Reference in New Issue
Block a user