initial commit
This commit is contained in:
commit
ce1328a960
2 changed files with 30 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
straight/
|
||||
eln-cache/
|
||||
auto-save-list/
|
27
init.el
Normal file
27
init.el
Normal file
|
@ -0,0 +1,27 @@
|
|||
(menu-bar-mode -1)
|
||||
; 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)
|
Loading…
Add table
Add a link
Reference in a new issue