diff options
Diffstat (limited to '')
| -rw-r--r-- | emacs-init.org | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org index 67746e2..6143409 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -91,6 +91,13 @@ header argument in the source code.  ;; (setq safe-local-variable-values (list (cons 'buffer-auto-save-file-name nil)                                         ;; (cons 'header-line-format " ")))  (setq vc-follow-symlinks t) + +;; For use on Windows via SSH X-Forwarding +;; See https://emacs.stackexchange.com/a/42440/25850 +(setq default-frame-alist +         (append default-frame-alist '((inhibit-double-buffering . t)))) +(setq posframe-inhibit-double-buffering t) +  (load (expand-file-name "emacs-init.el" user-emacs-directory))  #+end_src  | 
