diff options
| author | verdant <i@glowisle.me> | 2026-04-25 10:45:42 +0800 |
|---|---|---|
| committer | verdant <i@glowisle.me> | 2026-04-25 10:45:42 +0800 |
| commit | 6c38d42f1a17fee4d9ead9d146e88620cf780ec7 (patch) | |
| tree | cbe6b096873bdf798b04961ba1096af848f78149 /init.el | |
| parent | 07ea5504c9209239700f2aff3590d8d3f5cb5247 (diff) | |
| download | vemacs-6c38d42f1a17fee4d9ead9d146e88620cf780ec7.tar.gz vemacs-6c38d42f1a17fee4d9ead9d146e88620cf780ec7.zip | |
Initial commit
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -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. + ) |
