commit ce1328a96062966c5957a4ceb5bcf888b1d59b58 Author: Aleks Rutins Date: Wed Jul 30 18:21:47 2025 -0400 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4503d1f --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +straight/ +eln-cache/ +auto-save-list/ diff --git a/init.el b/init.el new file mode 100644 index 0000000..2d87deb --- /dev/null +++ b/init.el @@ -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)