summaryrefslogtreecommitdiffstats
path: root/ravi-init-layouts.el
diff options
context:
space:
mode:
authorRavi R Kiran <aine.marina@gmail.com>2015-03-17 04:17:17 (GMT)
committerRavi R Kiran <aine.marina@gmail.com>2015-03-17 04:17:17 (GMT)
commita6e94a30a835ea389fe8fc40df162ff327035ccb (patch)
treecf695ab8c77b2c78434b2c6913295641a9287110 /ravi-init-layouts.el
parentb94602dccfa28b997b1fc1f2e0373d997f4b95ce (diff)
downloaddotemacs-a6e94a30a835ea389fe8fc40df162ff327035ccb.zip
dotemacs-a6e94a30a835ea389fe8fc40df162ff327035ccb.tar.gz
dotemacs-a6e94a30a835ea389fe8fc40df162ff327035ccb.tar.bz2
Move main emacs directory out of load path
This follows the official emacs recommendation for lisp code inside emacs.d.
Diffstat (limited to 'ravi-init-layouts.el')
-rw-r--r--ravi-init-layouts.el57
1 files changed, 0 insertions, 57 deletions
diff --git a/ravi-init-layouts.el b/ravi-init-layouts.el
deleted file mode 100644
index f6199ce..0000000
--- a/ravi-init-layouts.el
+++ /dev/null
@@ -1,57 +0,0 @@
-;;; ravi-init-layouts.el --- layouts
-
-;; Copyright (C) 2014
-
-;; Author: <ravi@nero.lan>
-;; Keywords:
-
-;; 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 <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Uses undocumented emacs API
-
-;;; Code:
-
-(require 'quail)
-
-(quail-define-package
- "english-prog" "English programmer" "EN-P" t
- "English programmer's keyboard."
- nil t nil nil t nil nil nil nil nil t)
-
-(quail-define-rules
- ("!" ?1)
- ("@" ?2)
- ("#" ?3)
- ("$" ?4)
- ("%" ?5)
- ("^" ?6)
- ("&" ?7)
- ("*" ?8)
- ("(" ?9)
- (")" ?0)
- ("1" ?!)
- ("2" ?@)
- ("3" ?#)
- ("4" ?$)
- ("5" ?%)
- ("6" ?^)
- ("7" ?&)
- ("8" ?*)
- ("9" ?\()
- ("0" ?\)))
-
-(provide 'ravi-init-layouts)
-;;; ravi-init-layouts.el ends here