init-packages.el -> bootstrap + remove init-org.el
This commit is contained in:
parent
a3f4e5c545
commit
ab937bf013
4 changed files with 142 additions and 195 deletions
119
init.el
119
init.el
|
@ -40,71 +40,74 @@
|
|||
;;
|
||||
;;; License: GPLv3
|
||||
|
||||
(defconst EMACS-WRITE nil)
|
||||
(defconst narf-theme 'narf-dark)
|
||||
(defconst narf-default-font (font-spec :family "Terminus (TTF)" :size 12 :antialias nil))
|
||||
(defconst narf-big-font (font-spec :family "Inconsolata" :size 20))
|
||||
|
||||
(defconst narf-theme 'narf-dark)
|
||||
(defconst narf-default-font (font-spec :family "Terminus (TTF)" :size 12 :antialias nil))
|
||||
(defconst narf-writing-font (font-spec :family "Hack" :size 14))
|
||||
(defconst narf-big-font (font-spec :family "Inconsolata" :size 20))
|
||||
;; Write-mode settings
|
||||
(defvar write-mode-theme 'narf-write)
|
||||
(defvar write-mode-font (font-spec :family "Hack" :size 12))
|
||||
(defvar write-mode-dir "~/Dropbox/notes")
|
||||
(defvar write-mode-biblio-dir "~/Dropbox/docs/biblio")
|
||||
|
||||
(defconst narf-packages
|
||||
'(core ; core/core.el
|
||||
;;
|
||||
(load (concat user-emacs-directory "bootstrap.el"))
|
||||
;;
|
||||
|
||||
;;; The heart of NARF
|
||||
core-popup ; taming stray windows
|
||||
core-ui ; draw me like one of your French editors
|
||||
core-evil ; come to the dark side, we have cookies
|
||||
core-editor ; filling the editor-shaped hole in the emacs OS
|
||||
core-company ; for the lazy typist
|
||||
core-yasnippet ; for the lazier typist
|
||||
core-auto-insert ; for the laziest typist
|
||||
core-flycheck ; remember that semicolon you forgot?
|
||||
core-project ; whose project am I in?
|
||||
core-vcs ; version control is a programmer's best friend
|
||||
core-helm ; a search engine for life and love
|
||||
core-eval ; run code, run.
|
||||
core-workgroups ; cure Emacs alzheimers + tab emulation
|
||||
(narf '(core ; core/core.el
|
||||
|
||||
;;; Environments
|
||||
module-cc ; c/c++/obj-c madness
|
||||
module-csharp ; unity, .NET, and mono shenanigans
|
||||
module-data ; dbs 'n data formats
|
||||
module-go ; the hipster dialect
|
||||
module-java ; the poster child for carpal tunnel syndome
|
||||
module-js ; all(hope(abandon(ye(who(enter(here))))))
|
||||
module-lisp ; drowning in parentheses
|
||||
module-lua ; one-based indices? one-based indices.
|
||||
module-markdown ; markdown
|
||||
;; module-org ; for fearless [organized] leader
|
||||
module-php ; making php less painful to work with
|
||||
module-plantuml ; to help show others how right I am
|
||||
module-python ; beautiful is better than ugly
|
||||
module-regex ; /^[^\s](meaning)[^\n]*/
|
||||
module-ruby ; <3
|
||||
module-rust ; Fe2O3; for gamedev and great good
|
||||
module-sh ; she sells Z-shells by the C XOR
|
||||
module-swift ; yay, emoji variables!
|
||||
module-vim ; my mistress
|
||||
module-web ; for the 2.0'er
|
||||
;; The heart of NARF
|
||||
core-popup ; taming stray and sudden windows
|
||||
core-ui ; draw me like one of your French editors
|
||||
core-evil ; come to the dark side, we have cookies
|
||||
core-editor ; filling the editor-shaped hole in the emacs OS
|
||||
core-completion ; for the lazy typist
|
||||
core-yasnippet ; for the lazier typist
|
||||
core-file-templates ; for the laziest typist
|
||||
core-flycheck ; code police; tazing you for every semicolon you forget
|
||||
core-project ; whose project am I in?
|
||||
core-vcs ; remember remember, that commit in November
|
||||
core-helm ; a search engine for life and love
|
||||
core-eval ; run code, run.
|
||||
core-sessions ; cure Emacs alzheimers + tab emulation
|
||||
|
||||
;;; Experimental
|
||||
;; module-crystal ; ruby at the speed of c
|
||||
;; module-eshell ; for inferior OSes *cough*windows
|
||||
;; module-nim ; look out Abraham
|
||||
;; module-pony ; Dear Princess Compiler
|
||||
;; Environments
|
||||
module-apple ; Applescript, Swift, Launchbar, iOS
|
||||
module-cc ; c/c++/obj-c madness
|
||||
module-csharp ; unity, .NET, and mono shenanigans
|
||||
module-go ; the hipster dialect
|
||||
module-java ; the poster child for carpal tunnel syndome
|
||||
module-js ; all(hope(abandon(ye(who(enter(here))))))
|
||||
module-lisp ; drowning in parentheses
|
||||
module-lua ; one-based indices? one-based indices.
|
||||
module-markdown ; markdown
|
||||
module-php ; making php less painful to work with
|
||||
module-plantuml ; to help show others how right I am
|
||||
module-python ; beautiful is better than ugly
|
||||
module-regex ; /^[^\s](meaning)[^\n]*/
|
||||
module-ruby ; <3
|
||||
module-rust ; Fe2O3; for gamedev and great good
|
||||
module-sh ; she sells Z-shells by the C XOR
|
||||
module-tmux ; closing the rift between GUI & terminal
|
||||
module-web ; for the 2.0'er
|
||||
|
||||
;;; Specific custom functionality
|
||||
lib-plugin ; plugin dev for various programs
|
||||
lib-tmux ; closing the rift between GUI & terminal
|
||||
lib-demo ; let me demonstrate...
|
||||
lib-writing ; yes, I write papers and fiction in emacs
|
||||
;; lib-crm ; emacs and org-mode based CRM
|
||||
;; Experimental
|
||||
;;module-crystal ; ruby at the speed of c
|
||||
;;module-eshell ; for inferior OSes *cough*windows
|
||||
;;module-nim ; look out Abraham
|
||||
;;module-pony ; Dear Princess Compiler
|
||||
|
||||
;;; Key bindings & ex commands
|
||||
my-bindings
|
||||
my-commands
|
||||
))
|
||||
;; Organizational/Writing
|
||||
module-org ; for fearless [and organized] leader
|
||||
module-crm ; emacs and org-mode based CRM
|
||||
module-write ; making Emacs fit for writing fiction, papers & notes
|
||||
|
||||
(load (concat user-emacs-directory "init-packages.el"))
|
||||
;; Extra Tools
|
||||
module-demo ; let me demonstrate...
|
||||
|
||||
;; Key bindings & ex commands
|
||||
my-bindings
|
||||
my-commands
|
||||
))
|
||||
|
||||
;;; I think so Brain...
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue