diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-11-15T20·00+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-11-15T20·00+0100 |
commit | a564cd4112b1136511536afea96fbc561d73e7ad (patch) | |
tree | bc6916afcdcc38fdf50db765da1f6b7a3d474e7a | |
parent | a260bf9e8d3a02f68df0b664c7450693cd9d724f (diff) |
fix(nixos): Let buffers move between workspaces
-rw-r--r-- | init/nixos.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/init/nixos.el b/init/nixos.el index da9bc1e56de9..b84624aa7d9c 100644 --- a/init/nixos.el +++ b/init/nixos.el @@ -55,6 +55,10 @@ (exwm-cm-enable) ;; Show time in the mode line - (display-time-mode))) + (display-time-mode) + + ;; Let buffers move seamlessly between workspaces + (setq exwm-workspace-show-all-buffers t) + (setq exwm-layout-show-all-buffers t))) (provide 'nixos) |