mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Add floobits + disable desktop saving
This commit is contained in:
2
init.el
2
init.el
@ -13,7 +13,6 @@
|
|||||||
|
|
||||||
(server-mode t)
|
(server-mode t)
|
||||||
(unless (server-running-p) (server-start))
|
(unless (server-running-p) (server-start))
|
||||||
(when window-system (desktop-save-mode 1))
|
|
||||||
|
|
||||||
;; Global vars
|
;; Global vars
|
||||||
(defconst my/dir (file-name-directory load-file-name))
|
(defconst my/dir (file-name-directory load-file-name))
|
||||||
@ -48,4 +47,5 @@
|
|||||||
mod-cpp ; C++ gamedev
|
mod-cpp ; C++ gamedev
|
||||||
mod-eclim ; Integration into eclipse (for Java)
|
mod-eclim ; Integration into eclipse (for Java)
|
||||||
mod-csharp ; Emacs as a Csharp/Unity IDE
|
mod-csharp ; Emacs as a Csharp/Unity IDE
|
||||||
|
mod-collab ; For collab programming
|
||||||
))
|
))
|
||||||
|
11
init/mod-collab.el
Normal file
11
init/mod-collab.el
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
(use-package floobits :ensure t
|
||||||
|
:commands (floobits-join-workspace
|
||||||
|
floobits-share-dir-private
|
||||||
|
floobits-share-dir-public
|
||||||
|
floobits-leave-workspace
|
||||||
|
floobits-summon
|
||||||
|
floobits-follow-mode-toggle
|
||||||
|
floobits-clear-highlights))
|
||||||
|
|
||||||
|
;;
|
||||||
|
(provide 'mod-collab)
|
Reference in New Issue
Block a user