diff options
author | Raúl Benencia <rul@kalgan.cc> | 2019-06-23 11:43:30 -0700 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2019-06-23 13:32:01 -0700 |
commit | 284c8327c95bb0c71b111ebf95723a35a478295c (patch) | |
tree | faea9db4b1bba00d73d33b2065ed102f88b76b2c /.emacs |
Add emacs config
Diffstat (limited to '.emacs')
-rw-r--r-- | .emacs | 48 |
1 files changed, 48 insertions, 0 deletions
@@ -0,0 +1,48 @@ +;; Load up the general config + +;; Added by Package.el. This must come before configurations of +;; installed packages. Don't delete this line. If you don't want it, +;; just comment it out by adding a semicolon to the start of the line. +;; You may delete these explanatory comments. +(package-initialize) + +(load-file "~/.emacs.local.d/general.el") + +;; Modes +;;(load-file "~/.emacs.local.d/modes/auto-complete.el") +;;(load-file "~/.emacs.local.d/modes/ecb.el") + +;;(load-file "~/.emacs.local.d/modes/linum.el") +;;(load-file "~/.emacs.local.d/modes/notmuch.el") + +(load-file "~/.emacs.local.d/modes/anzu.el") +(load-file "~/.emacs.local.d/modes/auto-fill.el") +(load-file "~/.emacs.local.d/modes/company.el") +(load-file "~/.emacs.local.d/modes/dashboard.el") +(load-file "~/.emacs.local.d/modes/doom-modeline.el") +(load-file "~/.emacs.local.d/modes/eshell.el") +(load-file "~/.emacs.local.d/modes/flyspell.el") +(load-file "~/.emacs.local.d/modes/go-lang.el") +(load-file "~/.emacs.local.d/modes/ibuffer.el") +(load-file "~/.emacs.local.d/modes/helm.el") +(load-file "~/.emacs.local.d/modes/ido.el") +(load-file "~/.emacs.local.d/modes/imenu.el") +(load-file "~/.emacs.local.d/modes/latex.el") +(load-file "~/.emacs.local.d/modes/mail-mode.el") +(load-file "~/.emacs.local.d/modes/markdown.el") +(load-file "~/.emacs.local.d/modes/magit.el") +(load-file "~/.emacs.local.d/modes/org.el") +(load-file "~/.emacs.local.d/modes/package.el") +(load-file "~/.emacs.local.d/modes/projectile.el") +(load-file "~/.emacs.local.d/modes/smex.el") +(load-file "~/.emacs.local.d/modes/sml.el") +(load-file "~/.emacs.local.d/modes/sublimity.el") +(load-file "~/.emacs.local.d/modes/whitespace.el") +(load-file "~/.emacs.local.d/modes/writeroom.el") + +(load-file "~/.emacs.local.d/modes/themes.el") + +;; Extra Debian packages: elpa-yaml-mode +;; Extra packages to install from Elpa: puppet-mode + +(provide '.emacs) |