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