aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2019-05-26 18:03:18 -0300
committerEuAndreh <eu@euandre.org>2019-05-26 18:03:18 -0300
commit88b7240dfafb0ef95b75fffe56003602e2ce8e11 (patch)
tree238fdb88cbde108923afbd70349e66b6c6313ea7
parentCustomize org-todo-keyword-faces (diff)
downloaddotfiles-88b7240dfafb0ef95b75fffe56003602e2ce8e11.tar.gz
dotfiles-88b7240dfafb0ef95b75fffe56003602e2ce8e11.tar.xz
Customize split-width-threshold to 120
Make it more likely to split vertically.
-rw-r--r--spacemacs.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/spacemacs.el b/spacemacs.el
index 095c60d..bd7b189 100644
--- a/spacemacs.el
+++ b/spacemacs.el
@@ -755,7 +755,10 @@ This is the place where most of your configurations should be done. Unless it is
("i" "Idea" entry (file org-default-notes-file)
"* %? :IDEA: \n%t" :clock-in t :clock-resume t)
("n" "Next Task" entry (file+headline org-default-notes-file "Tasks")
- "** NEXT %? \nDEADLINE: %t")))
+ "** NEXT %? \nDEADLINE: %t"))
+
+ ;; Make splitting vertically more likely on smaller (velhinho) screens
+ split-width-threshold 120)
(set-language-environment "UTF-8")
(set-default-coding-systems 'utf-8)