diff --git a/src/lib/modes.el b/src/lib/modes.el new file mode 100644 index 0000000..268e5f3 --- /dev/null +++ b/src/lib/modes.el @@ -0,0 +1,35 @@ +ff;; Shit - My personal emacs IDE configuration +;; Copyright (C) 2010 Sameer Rahmani +;; +;; 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 +;; 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 . + +;; This file will define the most popular modes for ShitIDE + +;; --------------------------------------------------------------------- +;; Keymaps +;; --------------------------------------------------------------------- +(defvar shit-map (make-sparse-keymap) + "Default keymap for shit-mode minor mode that hold the global key +binding for shit IDE. each language plugin will have their own minor-mode +and keymap for their actions.") + +;; --------------------------------------------------------------------- +;; Groups +;; --------------------------------------------------------------------- +(defgroup shit-group nil + "Default values for ShitIDE configuration will are categorized here.") + +;; --------------------------------------------------------------------- +;; Custom Variables +;; ---------------------------------------------------------------------