head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2006.12.01.14.02.33;	author kusung25;	state Exp;
branches;
next	;


desc
@@


1.1
log
@*** empty log message ***
@
text
@(custom-set-variables
  ;; custom-set-variables was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 )
(custom-set-faces
  ;; custom-set-faces was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 )

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; python-mode d
;; http://www.emacswiki.org/cgi-bin/wiki/PythonMode
;; python-mode.el
;; emacs /lisp/progmodes 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(autoload 'python-mode "python-mode" "Python Mode." t)
(add-to-list 'auto-mode-alist '("\\.py\\'" . python-mode))
(add-to-list 'auto-mode-alist '("\\.pyw\\'" . python-mode))
(add-to-list 'interpreter-mode-alist '("python" . python-mode))

(add-hook 'python-mode-hook
(lambda ()
(set (make-variable-buffer-local 'beginning-of-defun-function)
'py-beginning-of-def-or-class)
(setq outline-regexp "def\\|class ")))

#!lisp
;; FIXME emacs Ͽ Ʒó شٰ ذ ɸŭ TAB ܼѰ  ʴ. :(
(setq default-tab-width 4)

;;ü ⺻ ۲÷ 
;;(setq default-frame-alist ' 
;;	( 
;;		(font . "-*-ü-normal-r-*-*-17-*-*-*-c-*-ksc5601-*") 
;;		(height . 45) 
;;		(width . 80) 
;;	) 
;;) 

;;ü ⺻ ۲÷ 
(setq default-frame-alist ' 
	( 
		(font . "-*-ü-normal-r-*-*-17-*-*-*-c-*-ksc5601-*") 
		(foreground-color . "white") 
		(background-color . "black") 
		(cursor-color . "white") 
		(height . 45) 
		(width . 80) 
	) 
) @
