about summary refs log blame commit diff
path: root/init.el
blob: 505873032731338c5dc79bf4f8914c3f0f4320ae (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                                                                                        







                                                                                      
                                                                                 
 
                   
                          

                    
               
                         
                 
                  
                    
        
           
            

                       
                 
         
                    
             
           
                    
              
               


                      
                   
                 
             


             

                      
                

                       

                                             


                 
             


                
                          
 



                                     

                                         
 


                                              
                                    
                      
 



                                      



                                       
 
                                             
 

                               


                              
 


                       

                                              


                                              
                                         
                                                                  
 
                    
                                                 
                                                                 
 


                                            



                               
                 
;; Emacs 24 or higher!
(when (< emacs-major-version 24)
  (error "This setup requires Emacs v24, or higher. You have: v%d" emacs-major-version))

;; Configure package manager
(require 'package)

;; Add Marmalade repo
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))

;; ... and melpa. Melpa packages that exist on marmalade will have
;; precendence.
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/"))

;; And load things!
(package-refresh-contents)
(package-initialize)

(defvar my-pkgs
  '(; Basic functionality
    ace-jump-mode
    ack-and-a-half
    browse-kill-ring
    dash
    flx-ido
    flycheck
    idle-highlight-mode
    ido-ubiquitous
    iy-go-to-char
    magit
    multiple-cursors
    nyan-mode
    paredit
    project-explorer
    projectile
    puppet-mode
    rainbow-delimiters
    rainbow-mode
    smex
    smart-mode-line
    switch-window
    undo-tree

    ; Clojure
    ac-nrepl
    clojure-cheatsheet
    cider
    clojure-mode
;    nrepl-eval-sexp-fu
)
  "A list of packages to install at launch.")

(defvar evil-pkgs
  '(evil
    evil-leader
    evil-tabs
    evil-paredit
    key-chord
    surround)
  "Evil related packages")

(dolist (p my-pkgs)
  (when (not (package-installed-p p))
    (package-install p)))

;; Are we on a mac?
(setq is-mac (equal system-type 'darwin))

;; Or on Linux?
(setq is-linux (equal system-type 'gnu/linux))

;; Is this being used by a vim user?
(setq is-vim-mode nil)

;; What's the home folder?
(defvar home-dir)
(setq home-dir (expand-file-name "~"))

(when is-vim-mode
  (dolist (p evil-pkgs)
    (when (not (package-installed-p p))
      (package-install p))))

(add-to-list 'load-path user-emacs-directory)

(mapc 'require '(init-functions
                 init-settings
                 init-modes
                 init-bindings
                 init-eshell))

(when is-vim-mode
  (require 'init-evil))

(add-to-list 'load-path "~/.emacs.d/scripts/")

(setq custom-file "~/.emacs.d/init-custom.el")
(load custom-file)

;; A file with machine specific settings.
;(load-file-if-exists (concat home-dir "/.emacs.d/init-local.el"))

;; IRC configuration
;; Actual servers and such are loaded from irc.el
; (load-file-if-exists (concat home-dir "/.emacs.d/init-irc.el"))

;; Load magnars' string manipulation library
(require 's)

;; Seed RNG
(random t)

;; Start server for emacsclient
;; (server-start)