diff options
author | Alan Pearce | 2017-09-08 23:21:51 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-08 23:21:51 +0200 |
commit | f1321a5cc23ae13220009a220b9fe13918cb369d (patch) | |
tree | 50865100d5476868e0319d7c4022ace6057d07ae | |
parent | f64d27e5aa9fa4668773a0e01bd4bf396b69d819 (diff) | |
download | nixfiles-f1321a5cc23ae13220009a220b9fe13918cb369d.tar.lz nixfiles-f1321a5cc23ae13220009a220b9fe13918cb369d.tar.zst nixfiles-f1321a5cc23ae13220009a220b9fe13918cb369d.zip |
Emacs: Add fontawesome
-rw-r--r-- | emacs/.emacs.d/main.el | 9 | ||||
-rw-r--r-- | nix/.config/nixpkgs/emacs.nix | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 7da0f6bd..e7a1dc1a 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -2748,6 +2748,15 @@ Pass ARG to `comint-delchar-or-maybe-eof'." (beginend-setup-all))) ;; #+END_SRC +;;;;;; fontawesome + +;; Sometimes I might want to add a font-awesome icon to some text. +;; This package gives me two interfaces to find the icons + +;; #+BEGIN_SRC emacs-lisp +(use-package fontawesome) +;; #+END_SRC + ;;;;;; multiple-cursors ;; I mentioned before that I’d used Sublime Text before. Multiple diff --git a/nix/.config/nixpkgs/emacs.nix b/nix/.config/nixpkgs/emacs.nix index 1635e38e..62a81710 100644 --- a/nix/.config/nixpkgs/emacs.nix +++ b/nix/.config/nixpkgs/emacs.nix @@ -94,6 +94,7 @@ in flycheck-flow flycheck-pos-tip flycheck-vale + fontawesome geiser ggtags ghq |