summaryrefslogtreecommitdiff
path: root/elchemy.el
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2024-06-01 16:11:59 -0700
committerChristian Cunningham <cc@localhost>2024-06-01 16:11:59 -0700
commit5c1b2a5da3c11f8b2d946219b2afeac526e6627d (patch)
tree2c7ac2846dc0afd1092aded47be928cd10fbe7ef /elchemy.el
parentc5a06aa3b3c6954b806db030900b89428fc05143 (diff)
Rename Config
Diffstat (limited to 'elchemy.el')
-rw-r--r--elchemy.el35
1 files changed, 35 insertions, 0 deletions
diff --git a/elchemy.el b/elchemy.el
new file mode 100644
index 0000000..757d629
--- /dev/null
+++ b/elchemy.el
@@ -0,0 +1,35 @@
+(require 'package)
+(setq package-enable-at-startup nil)
+(add-to-list 'package-archives
+ '("melpa" . "https://melpa.org/packages/") t)
+(package-initialize)
+
+(unless (package-installed-p 'use-package)
+ (package-refresh-contents)
+ (package-install 'use-package))
+
+(add-to-list 'load-path "~/.elchemy/")
+(require 'elchemy-boilerplate)
+(require 'elchemy-user)
+(require 'elchemy-util)
+(require 'elchemy-packages)
+(require 'elchemy-functions)
+(require 'elchemy-keys)
+(require 'elchemy-hooks)
+
+(setq inhibit-startup-screen t)
+(toggle-frame-maximized)
+;;(require 'elchemy-splash)
+
+(put 'narrow-to-region 'disabled nil)
+(put 'downcase-region 'disabled nil)
+(require 'elchemy-personal)
+
+(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.
+ '(org-level-1 ((t (:inherit outline-1 :extend nil :weight extra-bold :height 1.4))))
+ '(org-level-2 ((t (:inherit outline-2 :extend nil :slant italic :weight bold :height 1.2))))
+ '(org-level-3 ((t (:inherit outline-3 :extend nil :weight semi-bold)))))