Line formatting
This commit is contained in:
parent
08ca7c8516
commit
9594761e9f
10
init.el
10
init.el
|
|
@ -123,6 +123,7 @@
|
|||
(elpaca-use-package-mode))
|
||||
(elpaca-wait)
|
||||
|
||||
|
||||
;; Optimisation
|
||||
; GCMH
|
||||
;Enforce a sneaky Garbage Collection strategy to minimize GC interference with user activity.
|
||||
|
|
@ -160,6 +161,7 @@
|
|||
(lambda ()
|
||||
(setq jit-lock-defer-time 0)) nil t))
|
||||
|
||||
|
||||
;; TRAMP
|
||||
;TRAMP edit files over SSH configuration
|
||||
(use-package tramp
|
||||
|
|
@ -180,7 +182,6 @@
|
|||
(when (eq window-system 'w32)
|
||||
(setq tramp-default-method "plink")))
|
||||
|
||||
|
||||
; Tramp RPC - Alternate backend promising more speed
|
||||
(use-package tramp-rpc
|
||||
:ensure (:host github :repo "ArthurHeymans/emacs-tramp-rpc")
|
||||
|
|
@ -189,6 +190,7 @@
|
|||
(setq tramp-rpc-deploy-local-cache-directory
|
||||
"~/.cache/emacs/tramp-rpc-binaries"))
|
||||
|
||||
|
||||
;; Org Mode Config
|
||||
;Agenda
|
||||
;For Org-Agenda, you can set a location of your Org Agenda file here. Set Agenda Directory:
|
||||
|
|
@ -217,7 +219,6 @@
|
|||
|
||||
(setq org-startup-folded t))
|
||||
|
||||
|
||||
; For Org Pomodoro notification sound
|
||||
(use-package sound-wav
|
||||
:ensure t)
|
||||
|
|
@ -260,7 +261,6 @@
|
|||
(plist-get info :message)))))
|
||||
(setq alert-default-style 'custom-org-alert-notification))
|
||||
|
||||
|
||||
; System notifications of org agenda items
|
||||
(use-package org-wild-notifier
|
||||
:ensure t
|
||||
|
|
@ -281,7 +281,6 @@
|
|||
(setq org-wild-notifier-extra-alert-plist '(:persistent t))
|
||||
(org-wild-notifier-mode))
|
||||
|
||||
|
||||
; Upcoming agenda items in modeline
|
||||
(use-package org-upcoming-modeline
|
||||
:ensure t
|
||||
|
|
@ -289,7 +288,6 @@
|
|||
:config
|
||||
(org-upcoming-modeline-mode))
|
||||
|
||||
|
||||
; Org Mode Journalling
|
||||
(use-package org-journal
|
||||
:ensure t
|
||||
|
|
@ -299,7 +297,6 @@
|
|||
(setq org-journal-file-type 'daily)
|
||||
(setq org-journal-file-format "%Y%m%d.org"))
|
||||
|
||||
|
||||
;; Org Latex Preview Scale
|
||||
; Automatically toggle Org mode LaTeX fragment previews as the cursor enters and exits them
|
||||
(use-package org-fragtog
|
||||
|
|
@ -331,7 +328,6 @@
|
|||
'(read-only t cursor-intangible t face minibuffer-prompt)))
|
||||
|
||||
|
||||
|
||||
;; Doom Theme
|
||||
(use-package doom-themes
|
||||
:ensure t
|
||||
|
|
|
|||
Loading…
Reference in New Issue