diff options
author | Raúl Benencia <id@rbenencia.name> | 2024-11-08 08:13:25 -0800 |
---|---|---|
committer | Raúl Benencia <id@rbenencia.name> | 2024-11-08 08:13:25 -0800 |
commit | af0f6c80e73928109d49701b578e0142bc132e0b (patch) | |
tree | 6f8953ceb294b778a6028237a707dd4f1c402e5a /.emacs.d/rul-lisp/packages | |
parent | fde22ce2325c0bcdeb523d0c2432dde95c977d64 (diff) |
emacs: org literate config for rul-prog
Diffstat (limited to '.emacs.d/rul-lisp/packages')
-rw-r--r-- | .emacs.d/rul-lisp/packages/rul-prog.el | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/.emacs.d/rul-lisp/packages/rul-prog.el b/.emacs.d/rul-lisp/packages/rul-prog.el index e82931b..581dbc1 100644 --- a/.emacs.d/rul-lisp/packages/rul-prog.el +++ b/.emacs.d/rul-lisp/packages/rul-prog.el @@ -1,12 +1,7 @@ +;;; rul-prog.el --- Configuration related to programming and markup +;;; languages (use-package eglot :ensure t) -;; Dart -(setq dart-server-format-on-save t) -(add-hook 'dart-mode-hook 'lsp) - -(setq gc-cons-threshold (* 100 1024 1024) - read-process-output-max (* 1024 1024)) - ;; Go (use-package go-mode :ensure t @@ -24,10 +19,6 @@ :init (add-hook 'go-mode-hook 'go-eldoc-setup)) -;; Define function to call when go-mode loads -(defun my-go-mode-hook () - (set 'compile-command "go build -v && go test -v && go vet")) - ;; Latex (add-hook 'latex-mode-hook 'flyspell-mode) (setq TeX-PDF-mode t) @@ -61,7 +52,6 @@ :init (setq rust-mode-treesitter-derive t) :config - (add-hook 'rust-mode-hook 'eglot-ensure) - ) + (add-hook 'rust-mode-hook 'eglot-ensure)) (provide 'rul-prog) |