doomemacs/core/core-os-linux.el

15 lines
422 B
EmacsLisp
Raw Normal View History

2015-06-06 06:40:33 -04:00
;;; core-os-linux.el --- Debian-specific settings
;; Treat clipboard input as UTF-8 string first; compound text next, etc.
(setq x-select-request-type '(UTF8_STRING COMPOUND_TEXT TEXT STRING))
2016-05-20 22:37:30 -04:00
(defun doom-open-with (&optional app-name path)
2015-06-06 06:40:33 -04:00
(interactive)
(error "Not yet implemented"))
(defun def-docset! (&rest _)
2016-02-20 15:30:30 -05:00
(message "No docset function defined!"))
2015-06-06 06:40:33 -04:00
(provide 'core-os-linux)
;;; core-os-linux.el ends here