Compare commits
No commits in common. "a75bbaa386ad87ef3ada589a12d5a42321d66476" and "893ea2f870aa9402a9463566a322a1b3f5bbc7b0" have entirely different histories.
a75bbaa386
...
893ea2f870
4 changed files with 7 additions and 30 deletions
|
@ -1,18 +0,0 @@
|
||||||
name: update-flake-lock
|
|
||||||
on:
|
|
||||||
workflow_dispatch: # allows manual triggering
|
|
||||||
schedule:
|
|
||||||
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
lockfile:
|
|
||||||
runs-on: nix
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Update flake.lock
|
|
||||||
uses: DeterminateSystems/update-flake-lock@main
|
|
||||||
with:
|
|
||||||
pr-title: "Update flake.lock" # Title of PR to be created
|
|
||||||
pr-labels: | # Labels to be set on the PR
|
|
||||||
dependencies
|
|
||||||
automated
|
|
6
flake.lock
generated
6
flake.lock
generated
|
@ -71,11 +71,11 @@
|
||||||
"extra-package-copilot": {
|
"extra-package-copilot": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1708330768,
|
"lastModified": 1707055282,
|
||||||
"narHash": "sha256-2hLO2JLZZMgXcPEb7pVRUpVrUJsUMUdJcPoE4TC7edk=",
|
"narHash": "sha256-Drx2bB/Uiq0Alm8d575eucQrK6erFy4Z0KXsL5RsFaY=",
|
||||||
"owner": "zerolfx",
|
"owner": "zerolfx",
|
||||||
"repo": "copilot.el",
|
"repo": "copilot.el",
|
||||||
"rev": "0e24423cfef2993b3a9633c8cbb654079f2652a9",
|
"rev": "22f0446a17753716456e0cb8ee33f47731fc4ec3",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
9
init.el
9
init.el
|
@ -345,8 +345,8 @@
|
||||||
posframe
|
posframe
|
||||||
(vertico-posframe-poshandler . posframe-poshandler-frame-center)
|
(vertico-posframe-poshandler . posframe-poshandler-frame-center)
|
||||||
(vertico-posframe-fallback-mode . vertico-buffer-mode))))
|
(vertico-posframe-fallback-mode . vertico-buffer-mode))))
|
||||||
(vertico-posframe-min-height 1)
|
(vertico-posframe-min-height 0)
|
||||||
;; (vertico-posframe-min-width 80)
|
(vertico-posframe-min-width 80)
|
||||||
(vertico-posframe-parameters '((alpha-background . 80)))
|
(vertico-posframe-parameters '((alpha-background . 80)))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -736,10 +736,7 @@ This is meant to be an helper to be called from the window manager."
|
||||||
(set-face-attribute 'org-special-keyword nil :inherit 'fixed-pitch)
|
(set-face-attribute 'org-special-keyword nil :inherit 'fixed-pitch)
|
||||||
(set-face-attribute 'org-table nil :inherit 'fixed-pitch)
|
(set-face-attribute 'org-table nil :inherit 'fixed-pitch)
|
||||||
(set-face-attribute 'org-tag nil :inherit 'fixed-pitch :weight 'bold :height 0.8)
|
(set-face-attribute 'org-tag nil :inherit 'fixed-pitch :weight 'bold :height 0.8)
|
||||||
(set-face-attribute 'org-verbatim nil :inherit 'fixed-pitch)
|
(set-face-attribute 'org-verbatim nil :inherit 'fixed-pitch))
|
||||||
|
|
||||||
(org-babel-do-load-languages
|
|
||||||
'org-babel-load-languages '((haskell . t))))
|
|
||||||
|
|
||||||
(use-package org-agenda
|
(use-package org-agenda
|
||||||
:custom
|
:custom
|
||||||
|
|
|
@ -5,7 +5,7 @@ pkgs: epkgs: let
|
||||||
depsPerPackage = {
|
depsPerPackage = {
|
||||||
indent-bars = [elpaPackages.compat];
|
indent-bars = [elpaPackages.compat];
|
||||||
chatgpt = [melpaPackages.polymode];
|
chatgpt = [melpaPackages.polymode];
|
||||||
copilot = [melpaPackages.editorconfig melpaPackages.dash melpaPackages.s melpaPackages.f];
|
copilot = [melpaPackages.editorconfig melpaPackages.dash melpaPackages.s];
|
||||||
notmuch-notify = [melpaPackages.alert melpaPackages.notmuch];
|
notmuch-notify = [melpaPackages.alert melpaPackages.notmuch];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -94,12 +94,10 @@ pkgs: epkgs: let
|
||||||
eldoc-box
|
eldoc-box
|
||||||
go-translate
|
go-translate
|
||||||
notmuch
|
notmuch
|
||||||
poly-org
|
|
||||||
]) ++ (with elpaPackages; [
|
]) ++ (with elpaPackages; [
|
||||||
delight
|
delight
|
||||||
kind-icon
|
kind-icon
|
||||||
vertico-posframe
|
vertico-posframe
|
||||||
ef-themes
|
|
||||||
]) ++ (with nongnuPackages; [
|
]) ++ (with nongnuPackages; [
|
||||||
eat
|
eat
|
||||||
corfu-terminal
|
corfu-terminal
|
||||||
|
|
Reference in a new issue