configuration.nix/home/laptop/programs/doom-emacs/doom.d/config.el

24 lines
547 B
EmacsLisp
Raw Normal View History

2023-08-09 22:10:48 +02:00
;;; config.el --- the emacs config
;;; Commentary:
;;; Code:
(setq doom-theme 'doom-tokyo-night)
2023-08-10 16:27:50 +02:00
(setq company-idle-delay 0.0)
(advice-add 'json-parse-buffer :around
(lambda (orig &rest rest)
(save-excursion
(while (re-search-forward "\\\\u0000" nil t)
(replace-match "")))
(apply orig rest)))
(use-package! lsp-tailwindcss
:init
(setq lsp-tailwindcss-add-on-mode t))
(use-package! prisma-mode)
(add-hook 'prisma-mode-hook 'lsp)
2023-08-09 22:10:48 +02:00
;;; config.el ends here