;;---------------------------------------------------------------------- ;; Flex Settings for emacs modes and colors ;; allow shift-select. Also makes "End"/"Home" go to the ;; end/beginning of line instead of end/beginning of file (pc-selection-mode) (show-paren-mode 1) ;; make emacs colorful! (cond ((fboundp 'global-font-lock-mode) ;; Turn on font-lock in all modes that support it (global-font-lock-mode t) ;; Maximum colors (setq font-lock-maximum-decoration t))) ;;----------------------------------------------------------------------