Emacs: Reduce defer times to 2 and 4.
This commit is contained in:
parent
af97be2015
commit
16042f637e
|
@ -1,6 +1,6 @@
|
|||
;;; buffers.el --- Default settings for buffers. -*- lexical-binding: t; -*-
|
||||
|
||||
;; Time-stamp: <2020-04-10T14:15:45+0200>
|
||||
;; Time-stamp: <2020-04-18T03:09:23+0200>
|
||||
|
||||
;;; Commentary:
|
||||
;; * Setup scratch buffer.
|
||||
|
@ -50,7 +50,7 @@
|
|||
;; Delete old buffers.
|
||||
;; https://www.emacswiki.org/emacs/CleanBufferList
|
||||
(use-package midnight
|
||||
:defer 10
|
||||
:defer 4
|
||||
:init (setq midnight-delay 30 ; 30 seconds after “midnight”.
|
||||
midnight-period (* 2 60 60)) ; Clean every 2 hours.
|
||||
:custom ((clean-buffer-list-delay-general 1) ; Clean normal bufs after 1d,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; server.el --- Set up network stuff.. -*- lexical-binding: t; -*-
|
||||
|
||||
;; Time-stamp: <2020-03-18T14:56:59+0100>
|
||||
;; Time-stamp: <2020-04-18T03:11:41+0200>
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
|||
(unless slow-computer
|
||||
(use-package tramp
|
||||
:straight nil
|
||||
:defer 5
|
||||
:defer 2
|
||||
|
||||
:custom
|
||||
(tramp-use-ssh-controlmaster-options nil) ; Don't override SSH config.
|
||||
|
@ -44,7 +44,7 @@
|
|||
(unless (equal (user-real-uid) 0)
|
||||
(unless (getenv "SSH_CONNECTION")
|
||||
(use-package server
|
||||
:defer 5
|
||||
:defer 2
|
||||
:functions (server-running-p)
|
||||
|
||||
:init
|
||||
|
@ -61,7 +61,7 @@
|
|||
;; Server for Firefox-extension that allows to use Emacs to edit textareas.
|
||||
;; https://addons.mozilla.org/en-US/firefox/addon/ghosttext/
|
||||
(use-package atomic-chrome
|
||||
:defer 5
|
||||
:defer 2
|
||||
:config
|
||||
(atomic-chrome-start-server)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
;;; git.el --- magit and stuff. -*- lexical-binding: t; -*-
|
||||
|
||||
;; Time-stamp: <2020-04-10T14:17:08+0200>
|
||||
;; Time-stamp: <2020-04-18T03:09:42+0200>
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
|||
|
||||
;; Git integration.
|
||||
(use-package git-commit
|
||||
:defer 5)
|
||||
:defer 2)
|
||||
|
||||
(unless slow-computer
|
||||
(use-package magit
|
||||
|
|
Loading…
Reference in New Issue
Block a user