aboutsummaryrefslogtreecommitdiffstats
path: root/oni-tui.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2019-02-25 19:21:01 -0800
committerGravatar Tom Willemse2019-02-25 19:21:01 -0800
commitf70aba1aabe63c4f17438ccbc1076f0ce205da94 (patch)
treeb97afffc2b4fb83daadafcf20dcf5e83ca4b3b3e /oni-tui.el
parent3422f46ed8d94ac492bee03405a757197d4edf10 (diff)
downloademacs-config-f70aba1aabe63c4f17438ccbc1076f0ce205da94.tar.gz
emacs-config-f70aba1aabe63c4f17438ccbc1076f0ce205da94.zip
Add oni-tui
Diffstat (limited to 'oni-tui.el')
-rw-r--r--oni-tui.el32
1 files changed, 32 insertions, 0 deletions
diff --git a/oni-tui.el b/oni-tui.el
new file mode 100644
index 0000000..688d51b
--- /dev/null
+++ b/oni-tui.el
@@ -0,0 +1,32 @@
+;;; oni-tui.el --- Text UI configuration -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2019 Tom Willemse
+
+;; Author: Tom Willemse <tom@ryuslash.org>
+;; Keywords: local
+;; Version: 20190225191924
+;; Package-Requires: (oni-ui)
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Configuration for the Text-based UI of terminal Emacs.
+
+;;; Code:
+
+(load-theme 'wombat :no-confirm)
+
+(provide 'oni-tui)
+;;; oni-tui.el ends here