summaryrefslogtreecommitdiff
path: root/emacs.d/init.el
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@twitter.com>2019-02-17 16:23:35 -0800
committerFranck Cuny <fcuny@twitter.com>2019-02-17 16:23:35 -0800
commitff71f0b8e9ca371cf48e33cf797263ae4259495e (patch)
treefd2752a011e851ca7d161af3408c32aec206eb0b /emacs.d/init.el
parent[Emacs] Ensure we load flycheck and flyspell. (diff)
downloademacs.d-ff71f0b8e9ca371cf48e33cf797263ae4259495e.tar.gz
[Emacs] Rename `common.el` to `defuns.el`.
The name `defuns` make more sense since it's a collection of functions. All the custom variables are using the prefix 'fcuny/' consistently.
Diffstat (limited to 'emacs.d/init.el')
-rw-r--r--emacs.d/init.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 4f032cb..cdc8e98 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -9,7 +9,7 @@
(require 'fcuny-vars)
;; where to store the packages
-(setq package-user-dir fcuny-path-emacs-elpa)
+(setq package-user-dir fcuny/path-emacs-elpa)
;; initialize it
(package-initialize)
@@ -24,12 +24,11 @@
(require 'fcuny-settings)
(require 'fcuny-ui)
(require 'fcuny-hygiene)
-(require 'fcuny-common)
+(require 'fcuny-defuns)
(require 'fcuny-navigation)
(require 'fcuny-edit)
(require 'fcuny-text)
(require 'fcuny-git)
-
(require 'fcuny-flycheck)
(require 'fcuny-docker)
@@ -43,3 +42,5 @@
(require 'fcuny-make)
(require 'fcuny-python)
(require 'fcuny-shell)
+
+(require 'fcuny-twitter)