X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=setup%2Fzzz_finish.el;h=7cdb7caa78a05ffdc56aa4acf188585b5cd23bd8;hb=adc1b50372f1512e8cd1488439327050947676ef;hp=23d1e39ba9fc984f7d7b6fe43115f78d83f56ab3;hpb=3be6d2324e1f519eccef642f7caed0d3c9fb06bb;p=emacs-init.git diff --git a/setup/zzz_finish.el b/setup/zzz_finish.el index 23d1e39..7cdb7ca 100644 --- a/setup/zzz_finish.el +++ b/setup/zzz_finish.el @@ -1,3 +1,5 @@ +(load custom-file) + ; Don't ask why we need this ... ; I just don't know where why this is enabled by default in my config ... can't find it @@ -10,3 +12,8 @@ (setq whitespace-style (nconc (delete 'lines (delete 'lines-tail whitespace-style)) '(lines-tail))) + +; For some unfathomable reason display-buffer always want's to resize my windows ... +(defadvice display-buffer-use-some-window (around no-resize activate) + (flet ((window-resize (&rest args) nil)) + ad-do-it))