emacs-rice/modules/fn-desktop.el

24 lines
416 B
EmacsLisp

;; -*- lexical-binding: t; -*-
;; Integrate with the system clipboard
(unless (display-graphic-p)
(use-package xclip
:demand t
:config
(xclip-mode 1)))
(use-package bluetooth)
;; Control NetworkManager via nmcli
(use-package nm
:vc (:url "https://github.com/Kodkollektivet/emacs-nm"
:rev :newest))
(use-package wakatime-mode
:init
(global-wakatime-mode))
(provide 'fn-desktop)