diff options
author | EuAndreh <eu@euandre.org> | 2019-05-26 18:03:18 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-05-26 18:03:18 -0300 |
commit | 88b7240dfafb0ef95b75fffe56003602e2ce8e11 (patch) | |
tree | 238fdb88cbde108923afbd70349e66b6c6313ea7 | |
parent | Customize org-todo-keyword-faces (diff) | |
download | dotfiles-88b7240dfafb0ef95b75fffe56003602e2ce8e11.tar.gz dotfiles-88b7240dfafb0ef95b75fffe56003602e2ce8e11.tar.xz |
Customize split-width-threshold to 120
Make it more likely to split vertically.
-rw-r--r-- | spacemacs.el | 5 |
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) |