From 6c38d42f1a17fee4d9ead9d146e88620cf780ec7 Mon Sep 17 00:00:00 2001 From: verdant Date: Sat, 25 Apr 2026 10:45:42 +0800 Subject: Initial commit --- init.el | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 init.el (limited to 'init.el') diff --git a/init.el b/init.el new file mode 100644 index 0000000..d373a05 --- /dev/null +++ b/init.el @@ -0,0 +1,25 @@ +;; -*- lexical-binding: t; -*- + +(setq user-emacs-directory (expand-file-name "~/.emacs.d")) + +(add-to-list 'load-path (expand-file-name "core" user-emacs-directory)) +(add-to-list 'load-path (expand-file-name "packages" user-emacs-directory)) + +(require 'core) +(require 'packages) +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(package-selected-packages + '(ace-window clang-format color-theme-sanityinc-solarized company + counsel dashboard diredfl doom-themes evil-collection + evil-mu4e hugoista ivy-posframe ivy-rich leetcode + lsp-ui olivetti yasnippet))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) -- cgit v1.2.3