Skip to content

Updating dependencies #45

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# stable branches are recommended for CI, regression spotting. Testing with
# multiple versions can be done via input overrides, such as:
# nix build .#ci --override-input nixpkgs github:nixpkgs/nixpkgs/unstable
nixpkgs.url = "github:nixos/nixpkgs?ref=release-22.11";
nixpkgs.url = "github:nixos/nixpkgs?ref=release-23.11";
flake-utils.url = "github:numtide/flake-utils";
emacs-overlay.url = "github:nix-community/emacs-overlay";
# slave Emacs overlay to our nixpkgs. This doesn't do a lot except reduce
Expand Down
38 changes: 20 additions & 18 deletions lisp/erk.el
Original file line number Diff line number Diff line change
Expand Up @@ -1006,29 +1006,31 @@ With prefix argument, PREVIEW the buffer."
(load-theme 'modus-vivendi t) ; TODO customize
;; TODO customize
;; TODO use early init
(setopt load-prefer-newer t
inhibit-startup-message t
package-enable-at-startup nil
use-short-answers t
use-dialog-box nil
pixel-scroll-precision-mode 1
;; Recursive minibuffer too useful when introspecting
enable-recursive-minibuffers t
default-frame-alist
'((tool-bar-lines . 0)
(menu-bar-lines . 0)
(internal-border-width . 0)
(undecorated . nil)
(background-color . "#000000") ; said to reduce startup flicker on theme
(ns-appearance . dark) ; darwin
(ns-transparent-titlebar . t) ; darwin
(vertical-scroll-bars . nil)
(horizontal-scroll-bars . nil)))
;; TODO switch to setopt after 28 is deprecated.
(setq load-prefer-newer t
inhibit-startup-message t
package-enable-at-startup nil
use-short-answers t
use-dialog-box nil
pixel-scroll-precision-mode 1
;; Recursive minibuffer too useful when introspecting
enable-recursive-minibuffers t
default-frame-alist
'((tool-bar-lines . 0)
(menu-bar-lines . 0)
(internal-border-width . 0)
(undecorated . nil)
(background-color . "#000000") ; startup flicker
(ns-appearance . dark) ; darwin
(ns-transparent-titlebar . t) ; darwin
(vertical-scroll-bars . nil)
(horizontal-scroll-bars . nil)))
(setq load-path ',load-path)
(push ,package-path load-path)
(require ',package-feature))))
(start-process buffer-name out-buffer emacsen
"-Q"
"--debug-init" ; TODO switch
"--init-dir" init-dir
"--eval" (format "%S" init-form))))

Expand Down