Compare commits

..

5 Commits

4 changed files with 12 additions and 9 deletions

12
flake.lock generated
View File

@@ -99,11 +99,11 @@
]
},
"locked": {
"lastModified": 1748455938,
"narHash": "sha256-mQ/iNzPra2WtDQ+x2r5IadcWNr0m3uHvLMzJkXKAG/8=",
"lastModified": 1748487500,
"narHash": "sha256-PkOf6M/MIjpyJrQ9vGEePE0o1nLCcP9n9ONx4DFGudo=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "02077149e2921014511dac2729ae6dadb4ec50e2",
"rev": "115344f32b56ae9581386bf0ab9e3df7adc92a82",
"type": "github"
},
"original": {
@@ -412,11 +412,11 @@
"treefmt-nix": "treefmt-nix"
},
"locked": {
"lastModified": 1748458493,
"narHash": "sha256-hEyPRVokIgER+OJj5d7U9qCbwssAEFA1n1biS5PYttI=",
"lastModified": 1748486714,
"narHash": "sha256-yrxMTA3V2bbq4DI10TEIA+1nsnq2qo6sQujJpigaovQ=",
"owner": "nix-community",
"repo": "NUR",
"rev": "87ede2bc66275ab2dea55720b1a4055e8c5c06db",
"rev": "fe7cbf5b87d8438040e37d400e4d1d8491d9ff76",
"type": "github"
},
"original": {

View File

@@ -31,6 +31,9 @@
;; load path
;; (add-to-list 'load-path "~/.emacs.d/work/")
;; set emacs directory
(setq user-emacs-directory "~/.config/emacs")
;; set & load custom file
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
(when (file-exists-p custom-file)

View File

@@ -358,7 +358,7 @@
(global-set-key (kbd "M-x") #'helm-M-x)
(global-set-key (kbd "C-x r b") #'helm-filtered-bookmarks)
(global-set-key (kbd "C-x C-f") #'helm-find-files)
(setq helm-ff-auto-update-initial-value non-nil)
(setq helm-ff-auto-update-initial-value 1)
(helm-mode 1))
;; org stuff
@@ -444,7 +444,7 @@
(use-package org-roam
:after org
:custom
(org-roam-directory "~/org-roam")
(org-roam-directory "~/org/roam")
:bind
(("C-c n l" . org-roam-buffer-toggle)
("C-c n f" . org-roam-node-find)

View File

@@ -26,7 +26,7 @@
source = config.lib.file.mkOutOfStoreSymlink ./emacs/early-init.el;
};
"emacs/init.el" = {
source = config.lib.file.mkOutOfStoreSymlink ./emacs/early-init.el;
source = config.lib.file.mkOutOfStoreSymlink ./emacs/init.el;
};
};
};