HI I tried to use following as my _emasc file(under c:\), but this version does not seems to use it. This file is working under my Linux emacs but not in this windows emacs. Does anyone know why?
Thanks Lee ;; Set up the keyboard so the delete key on both the regular keyboard ;; and the keypad delete the character under the cursor and to the right ;; under X, instead of the default, backspace behavior. (global-set-key [delete] 'delete-char) (global-set-key [kp-delete] 'delete-char) ;; turn on font-lock mode (global-font-lock-mode t) ;; enable visual feedback on selections (setq-default transient-mark-mode t) ;; always end a file with a newline (setq require-final-newline t) ;; stop at the end of the file, not just add lines (setq next-line-add-newlines nil) ;;to display time (display-time) ;;to set the cursor color (set-cursor-color "red") ;;to set the font ;(set-frame-font "-*-fixedsysttf-*-*-*-*-15-*-*-*-*-*-*-*") ;;to set foreground color to white (set-foreground-color "white") ;;to set background color to black (set-background-color "black") ;;to manage the geometric size of initial window. (setq initial-frame-alist '((width . 87) (height . 42))) ;;set the keybinding so that you can use f4 for goto line (global-set-key [f4] 'goto-line) ;;set the keybinding so that f3 will start the shell (global-set-key [f3] 'shell) ;;set the keybinding so that f5 will start query replace (global-set-key [f5] 'query-replace) (global-set-key [f6] 'switch-to-buffer) (global-set-key [f7] 'hippie-expand) (global-set-key [f8] 'ispell) (setq load-path (cons "/home/hemant/elisp" load-path)) (when window-system ;; enable wheelmouse support by default (mwheel-install) ;; use extended compound-text coding for X clipboard (set-selection-coding-system 'compound-text-with-extensions)) (autoload 'mpg123 "mpg123" "A Front-end to mpg123" t) (custom-set-variables ;; custom-set-variables was added by Custom -- don't edit or cut/paste it! ;; Your init file should contain only one such instance. '(auto-save-default nil) '(backup-directory-alist (quote (("." . "/home/hemant/backup")))) '(default-frame-alist (quote ((tool-bar-lines . 1) (menu-bar-lines . 1) (width . 87) (height . 42))))) (custom-set-faces ;; custom-set-faces was added by Custom -- don't edit or cut/paste it! ;; Your init file should contain only one such instance. '(font-lock-comment-face ((((class color) (background dark)) (:foreground "chocolate1" :slant italic :family "-*-lucida-medium-r-*-*-14-*-*-*-*-*-*-*")))) '(fringe ((((class color) (background dark)) (:background "grey10" :width ultra-condensed)))) '(scroll-bar ((t (:background "Dark slate gray")))))