Remove extra-{ansible,text}; update init.el

This commit is contained in:
Henrik Lissner 2016-04-26 01:55:33 -04:00
parent c210d2f580
commit a514057fac
3 changed files with 5 additions and 26 deletions

View file

@ -46,6 +46,9 @@
(defconst narf-default-theme 'narf-dark)
(defconst narf-default-font (font-spec :family "Hack" :size 12))
(setq user-full-name "Henrik Lissner"
user-mail-address "henrik@lissner.net")
(narf `(core ; core/core.el
;; OS-specific config
@ -61,7 +64,7 @@
core-company ; 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-flycheck ; get tazed 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
@ -70,7 +73,7 @@
;; Environments
module-apple ; Applescript, Swift, Launchbar, iOS, wallet syphons, etc.
module-cc ; C/C++/obj-c madness
module-cc ; C/C++/Obj-C madness
module-crystal ; ruby at the speed of c
module-csharp ; unity, .NET, and mono shenanigans
module-data ; config and data formats
@ -95,10 +98,8 @@
;;module-eshell ; for inferior OSes *cough*windows
;; Extra libraries
extra-ansible ;
extra-demo ; allow me to demonstrate...
extra-tags ; if you liked it you should've generated a tag for it
extra-text ; break in case of word documents from clients
extra-tmux ; closing the rift between GUI & terminal
extra-write ; for writing papers and fiction in Emacs

View file

@ -1,12 +0,0 @@
;;; extra-ansible.el
(def-project-type! ansible-mode "ans"
:modes (yaml-mode)
:files ("roles/"))
(use-package company-ansible
:commands (company-ansible)
:init (def-company-backend! ansible-mode (ansible)))
(provide 'extra-ansible)
;;; module-ansible.el ends here

View file

@ -1,10 +0,0 @@
;;; extra-text.el
;; TODO
(evil-define-operator narf/html-encode (beg end)
"HTML encode the selected region."
(interactive "<r>")
(shell-command-on-region beg end "sort" nil t))
(provide 'extra-text)
;;; extra-text.el ends here