From 5b4690419b8d29d5e9ead96c56274a5403aa0b2e Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 3 Oct 2018 15:10:08 -0400 Subject: [PATCH] Increase doom-large-file-size threshold to 2mb 1mb is a little *too* conservative. --- core/core-editor.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-editor.el b/core/core-editor.el index 77d1d5bc3..464913887 100644 --- a/core/core-editor.el +++ b/core/core-editor.el @@ -1,6 +1,6 @@ ;;; core-editor.el -*- lexical-binding: t; -*- -(defvar doom-large-file-size 1 +(defvar doom-large-file-size 2 "Size (in MB) above which the user will be prompted to open the file literally to avoid performance issues. Opening literally means that no major or minor modes are active and the buffer is read-only.")