mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
company-lsp is no longer supported by lsp-mode for providing completions to company, instead company-capf should be used which it built-in to company itself.
21 lines
455 B
EmacsLisp
21 lines
455 B
EmacsLisp
;;; siren-core-performance.el --- jimeh's Emacs Siren: Performance tweaks
|
|
|
|
;;; Commentary:
|
|
|
|
;; Performance tweaks.
|
|
|
|
;;; Code:
|
|
|
|
;; Setup and use gcmh-mode for improved garbage collection.
|
|
(use-package gcmh
|
|
:hook
|
|
(emacs-startup . (lambda() (gcmh-mode +1)))
|
|
(focus-out-hook . gcmh-idle-garbage-collect)
|
|
|
|
:custom
|
|
(gcmh-idle-delay 10)
|
|
(gcmh-high-cons-threshold 104857600))
|
|
|
|
(provide 'siren-core-performance)
|
|
;;; siren-core-performance.el ends here
|