|
@@ -2,11 +2,27 @@
|
|
;;; GNU Emacs EMACS_VERSION default settings for Vine Linux
|
|
;;; GNU Emacs EMACS_VERSION default settings for Vine Linux
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
+(setq emacs-build-system
|
|
|
|
+ (concat emacs-build-system ", modified for Vine Linux"))
|
|
|
|
+
|
|
|
|
+(setq report-emacs-bug-address "Vine@vinelinux.org")
|
|
|
|
+
|
|
(defcustom emacs-ime (getenv "EMACS_IME")
|
|
(defcustom emacs-ime (getenv "EMACS_IME")
|
|
"A variable of default Input Method Editor"
|
|
"A variable of default Input Method Editor"
|
|
:type 'string)
|
|
:type 'string)
|
|
(if (null emacs-ime)
|
|
(if (null emacs-ime)
|
|
- (setq emacs-ime "scim"))
|
|
+ (setq emacs-ime "ibus-el"))
|
|
|
|
+
|
|
|
|
+(defconst vine-default-major-version VINE_DEFAULT_MAJOR_VERSION "\
|
|
|
|
+Major version number of this version of vine-default.
|
|
|
|
+This variable equals the major version number of Vine Linux that is running.")
|
|
|
|
+
|
|
|
|
+(defconst vine-default-minor-version 0 "\
|
|
|
|
+Minor version number of this version of vine-default.
|
|
|
|
+This variable is the system number for vine-default-major-version.")
|
|
|
|
+
|
|
|
|
+(defconst vine-default-version (+ vine-default-major-version (/ (float vine-default-minor-version) 10)) "\
|
|
|
|
+The version of vine-default.")
|
|
|
|
|
|
(defcustom vine-default t
|
|
(defcustom vine-default t
|
|
"A boolean for all Vine Linux default settings"
|
|
"A boolean for all Vine Linux default settings"
|
|
@@ -25,9 +41,9 @@
|
|
(defvar vine-default-setup-hook nil
|
|
(defvar vine-default-setup-hook nil
|
|
"List of functions to be called at vine-default-setup")
|
|
"List of functions to be called at vine-default-setup")
|
|
|
|
|
|
-(defvar after-vine-default-setup-hook nil
|
|
+;; (defvar after-vine-default-setup-hook nil
|
|
- "This hook is obsolete! Please do not use this hook.
|
|
+;; "This hook is obsolete! Please do not use this hook.
|
|
- List of functions to be called at the end of vine-default-setup")
|
|
+;; List of functions to be called at the end of vine-default-setup")
|
|
|
|
|
|
(defun vine-default-setup ()
|
|
(defun vine-default-setup ()
|
|
"A function for setup to default configurations of Vine Linux"
|
|
"A function for setup to default configurations of Vine Linux"
|
|
@@ -40,6 +56,7 @@
|
|
(message "Loading vine-default-faces ...")
|
|
(message "Loading vine-default-faces ...")
|
|
(require 'vine-default-faces))
|
|
(require 'vine-default-faces))
|
|
(run-hooks 'vine-default-setup-hook)
|
|
(run-hooks 'vine-default-setup-hook)
|
|
|
|
+ ;; (run-hooks 'after-vine-default-setup-hook); obsolete
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
|