aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/overlays/kookie/emacs/theme
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-12-31 11:21:50 +0100
committerMx Kookie <kookie@spacekookie.de>2020-12-31 11:21:50 +0100
commit31d9ff075c935cf4fe4d8b13ed530901481d4fb8 (patch)
treeb7dca2486c8c595fe6f620dc0cac3a3d2c6e855b /infra/libkookie/overlays/kookie/emacs/theme
parentaefe49ed887042804d45b5c384af7ef0c3e12f7c (diff)
libkookie: emacs: add theme loading and rust mode
Diffstat (limited to 'infra/libkookie/overlays/kookie/emacs/theme')
-rw-r--r--infra/libkookie/overlays/kookie/emacs/theme/default.el2
-rw-r--r--infra/libkookie/overlays/kookie/emacs/theme/default.nix5
2 files changed, 3 insertions, 4 deletions
diff --git a/infra/libkookie/overlays/kookie/emacs/theme/default.el b/infra/libkookie/overlays/kookie/emacs/theme/default.el
index 2057b13b6191..324cdf502039 100644
--- a/infra/libkookie/overlays/kookie/emacs/theme/default.el
+++ b/infra/libkookie/overlays/kookie/emacs/theme/default.el
@@ -1,6 +1,8 @@
(provide 'theme)
+(load-theme 'sanityinc-tomorrow-eighties t)
+
(custom-set-variables
'(custom-safe-themes
'("628278136f88aa1a151bb2d6c8a86bf2b7631fbea5f0f76cba2a0079cd910f7d" default))
diff --git a/infra/libkookie/overlays/kookie/emacs/theme/default.nix b/infra/libkookie/overlays/kookie/emacs/theme/default.nix
index a80dc020367c..cd19253d957b 100644
--- a/infra/libkookie/overlays/kookie/emacs/theme/default.nix
+++ b/infra/libkookie/overlays/kookie/emacs/theme/default.nix
@@ -1,6 +1,3 @@
{ buildModule, pkgs, epkgs }:
with epkgs;
-(buildModule "theme" ./. [
- color-theme-sanityinc-tomorrow
- color-identifiers-mode
-])
+(buildModule "theme" ./. [ color-theme-sanityinc-tomorrow ])