# HG changeset patch # User Oleksandr Gavenko # Date 1459525749 -10800 # Node ID e9b455ea032743efb16c436212e843eaaeb95c96 # Parent 5f96b8d649ba5c43c50b785b408d9bf8b1c882c9 Fix: Warning: `european-calendar-style' is an obsolete variable (as of 23.1); use `calendar-date-style' instead. diff -r 5f96b8d649ba -r e9b455ea0327 .emacs-my --- a/.emacs-my Fri Apr 01 18:46:29 2016 +0300 +++ b/.emacs-my Fri Apr 01 18:49:09 2016 +0300 @@ -814,6 +814,8 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (message "paren, braces") +(require 'paren) + (show-paren-mode 1) ; Parenthesis matching via highlighting. (setq show-paren-style (quote parenthesis)) @@ -1022,6 +1024,8 @@ (global-set-key "\C-x\C-b" 'ibuffer) (global-set-key [s-insert] 'ibuffer) +(require 'icomplete) + (icomplete-mode 1) (setq icomplete-with-completion-tables t) @@ -1273,7 +1277,7 @@ ;; (setq calendar-date-display-form (quote ((format "%04s-%02d-%02d" year (string-to-int month) (string-to-int day))))) ;; (setq calendar-time-display-form (quote (24-hours ":" minutes (if time-zone " (") time-zone (if time-zone ")")))) (setq calendar-week-start-day 1) -(setq european-calendar-style t) +(setq calendar-date-style 'iso) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (message "standard hooks")