4
votes

When I open todo list or agenda, it opens in a mini-buffer (takes up half of my screen). How do I change my dotfile so that when I call org-agenda it takes up the entire screen?

2

2 Answers

10
votes

As of Org version 8.3, you can set org-agenda-window-setup to only-window.

3
votes

Just remove the other windows after running org-agenda by adding delete-other-windows to its after advice: (advice-add 'org-agenda :after #'delete-other-windows).