From a514057fac6dc23b09997e0a30ca95da052a301b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 26 Apr 2016 01:55:33 -0400 Subject: [PATCH] Remove extra-{ansible,text}; update init.el --- init.el | 9 +++++---- modules/extra-ansible.el | 12 ------------ modules/extra-text.el | 10 ---------- 3 files changed, 5 insertions(+), 26 deletions(-) delete mode 100644 modules/extra-ansible.el delete mode 100644 modules/extra-text.el diff --git a/init.el b/init.el index 5f8da7290..be8d93a4f 100644 --- a/init.el +++ b/init.el @@ -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 diff --git a/modules/extra-ansible.el b/modules/extra-ansible.el deleted file mode 100644 index d3e237b0e..000000000 --- a/modules/extra-ansible.el +++ /dev/null @@ -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 diff --git a/modules/extra-text.el b/modules/extra-text.el deleted file mode 100644 index f5977e000..000000000 --- a/modules/extra-text.el +++ /dev/null @@ -1,10 +0,0 @@ -;;; extra-text.el - -;; TODO -(evil-define-operator narf/html-encode (beg end) - "HTML encode the selected region." - (interactive "") - (shell-command-on-region beg end "sort" nil t)) - -(provide 'extra-text) -;;; extra-text.el ends here