emacs.d/init.el

39 lines
1.1 KiB
EmacsLisp

; load straight.el
(defvar bootstrap-version)
(let ((bootstrap-file
(expand-file-name
"straight/repos/straight.el/bootstrap.el"
(or (bound-and-true-p straight-base-dir)
user-emacs-directory)))
(bootstrap-version 7))
(unless (file-exists-p bootstrap-file)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el"
'silent 'inhibit-cookies)
(goto-char (point-max))
(eval-print-last-sexp)))
(load bootstrap-file nil 'nomessage))
(setq nano-font-family-monospaced "Adwaita Mono")
(setq nano-font-family-proportional nil)
(straight-use-package
'(nano :type git :host github :repo "rougier/nano-emacs"))
(require 'nano)
(require 'nano-command)
;(straight-use-package 'mu4e)
;(straight-use-package
; '(mu4e-dashboard :type git :host github :repo "rougier/mu4e-dashboard"))
;(require 'mu4e)
;(require 'mu4e-dashboard)
;(straight-use-package 'svg-tag-mode)
;(require 'nano-mu4e)
(straight-use-package 'org-ql)
(require 'org-ql)
(menu-bar-mode -1)