28 lines
848 B
EmacsLisp
28 lines
848 B
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)
|
|
|
|
(straight-use-package 'org-ql)
|
|
(require 'org-ql)
|
|
|
|
(menu-bar-mode -1)
|