2015-06-06 06:40:33 -04:00
|
|
|
;;; init.el --- NARF bootstrap
|
2014-07-15 02:21:56 -04:00
|
|
|
;;
|
2015-06-06 06:40:33 -04:00
|
|
|
;; Author: Henrik Lissner <henrik@lissner.net>
|
|
|
|
;; URL: https://github.com/hlissner/emacs.d
|
|
|
|
;; Version: 0.0.0001
|
2014-07-15 02:21:56 -04:00
|
|
|
;;
|
2015-06-06 06:40:33 -04:00
|
|
|
;;; Are you pondering what i'm pondering, Pinky?
|
2014-12-10 15:54:36 -05:00
|
|
|
;;
|
2015-06-06 06:38:16 -04:00
|
|
|
;; ,,, !/:.
|
|
|
|
;; /::\". !!:::
|
|
|
|
;; :::::\". ," \:,::
|
|
|
|
;; ::::::\ ". ,","\::.
|
2015-06-06 06:40:33 -04:00
|
|
|
;; \:::::":\ "/""v' :'
|
2015-06-06 06:38:16 -04:00
|
|
|
;; !::::\ ! \ \ __
|
|
|
|
;; "::::\ \ ! \.&&&&,
|
2015-06-06 06:40:33 -04:00
|
|
|
;; ," __ ", cd,&&&&&&'
|
2015-06-06 06:38:16 -04:00
|
|
|
;; \ ". "" / \&&&" _,---
|
|
|
|
;; "",__\_ / _,:":::::
|
|
|
|
;; _," ,"" ,-,__,/":,_ ,",":::::::
|
|
|
|
;; _," ," `'' ::::,",__,,----,,__," /:::::::::
|
|
|
|
;; ," ,".__, \:::," " /:::":::::/
|
|
|
|
;; ," ,/"::::::\ >" (_-"/::::::
|
|
|
|
;; / ,"_!:::::::/, ," _,,--, /::::::/
|
|
|
|
;; / "" _,"\:::::::' ! ," ){:::::/
|
|
|
|
;; ! _," \ "", \,"""-,____,"__,,,"_," _/
|
2015-06-06 06:40:33 -04:00
|
|
|
;; ""t" \\ \ "-,_(*)&&&&(*)," \ ."
|
2015-06-06 06:38:16 -04:00
|
|
|
;; / \", ! , \ ! - )
|
|
|
|
;; ! \ "" ! !==!"-,__,'
|
|
|
|
;; ! \ """_""""`, ", /"_
|
2015-06-06 06:40:33 -04:00
|
|
|
;; \ , .l /" " ", \! ,_/
|
2015-06-06 06:38:16 -04:00
|
|
|
;; ), \ / \ \/ ,, /! !
|
|
|
|
;; ,::\ \," \ ! \/ ! !
|
|
|
|
;; _,::::" ) )\ ," ___ \ -,_, ,"",! !
|
|
|
|
;; __,,,::::"" ," ,":::,-:::--:" __\_!__/_""-,_!
|
|
|
|
;; ,,:::""""""" ,:_,""__...._"""::::"" /:::::" ""::::::
|
2015-06-06 06:40:33 -04:00
|
|
|
;; (:._ l::::::::::::\\/ "" ""
|
2015-06-06 06:38:16 -04:00
|
|
|
;; """"--,,,--- """"
|
2014-12-05 17:28:03 -05:00
|
|
|
;;
|
2015-06-06 06:40:33 -04:00
|
|
|
;; These mice are not part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;;; License: GPLv3
|
2014-08-29 22:37:25 -04:00
|
|
|
|
2015-06-06 06:40:33 -04:00
|
|
|
(defconst narf-debug-mode nil)
|
2014-07-15 02:21:56 -04:00
|
|
|
|
2015-06-06 06:40:33 -04:00
|
|
|
(defconst narf-default-font '(:family "terminus (ttf)" :size 12 :antialias nil))
|
|
|
|
(defconst narf-default-theme (if window-system 'narf-dark 'wombat))
|
2015-04-22 20:48:28 -04:00
|
|
|
|
2015-06-06 06:40:33 -04:00
|
|
|
(setq user-emacs-directory "~/Dropbox/Projects/dev/narf-emacs/")
|
|
|
|
(load (concat user-emacs-directory "core/core.el"))
|
|
|
|
(mapc 'require
|
|
|
|
'())
|
|
|
|
;; (;; Settings for specific modes or tools
|
|
|
|
;; init-cc ; c/c++/obj-c madness
|
|
|
|
;; ;; init-cscope
|
|
|
|
;; ;; init-csharp ; unity, mono and xamarin
|
|
|
|
;; init-data ; dbs 'n data formats
|
|
|
|
;; ;; init-eshell
|
|
|
|
;; ;; init-go
|
|
|
|
;; init-java ; the poster child for carpal tunnel syndome
|
|
|
|
;; init-js ; alert("not java, javascript!")
|
|
|
|
;; init-lisp ; elisp, clisp and clojure
|
|
|
|
;; init-lua ; one-based indices? one-based indices.
|
|
|
|
;; init-org ; for fearless [organized] leader
|
|
|
|
;; init-php ; making php less painful to work with
|
|
|
|
;; init-python ; beautiful is better than ugly
|
|
|
|
;; init-regex ; /^[^\s](meaning)[^\n]*/
|
|
|
|
;; init-ruby ; <3
|
|
|
|
;; init-scss ; @include magic;
|
|
|
|
;; init-sh ; #!/bin/bash_your_head_in
|
|
|
|
;; ;; init-sonicpi ; the funk soul brotha
|
|
|
|
;; ;; init-swift ; yay, emoji variabless!
|
|
|
|
;; init-text ; i got nothing...
|
|
|
|
;; ;; init-rust
|
|
|
|
;; ;; init-r ; for science!
|
|
|
|
;; init-vim ; the confessional
|
|
|
|
;; init-web ; for the 2.0'er
|
2014-11-29 20:21:03 -05:00
|
|
|
|
2015-06-06 06:40:33 -04:00
|
|
|
;; bindings
|
|
|
|
;; commands
|
|
|
|
;; )
|
|
|
|
;; )
|
2015-04-22 20:48:28 -04:00
|
|
|
|
2015-06-06 06:40:33 -04:00
|
|
|
(require 'local nil t)
|
|
|
|
(message ">>> Loaded in %s" (emacs-init-time))
|
2014-09-20 16:54:04 -04:00
|
|
|
|
2014-12-05 17:28:03 -05:00
|
|
|
|
2015-06-06 06:40:33 -04:00
|
|
|
;;; I think so Brain...
|