2015-03-16 01:44:42 +00:00
|
|
|
;;; config.el --- rcirc Layer configuration File for Spacemacs
|
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2015-03-16 01:44:42 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
2021-03-24 03:31:44 +00:00
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-03-16 01:44:42 +00:00
|
|
|
|
|
|
|
;; Variables
|
|
|
|
|
|
|
|
(defvar rcirc-enable-authinfo-support nil
|
|
|
|
"if non nil then authentication uses authinfo.")
|
|
|
|
|
2018-11-25 23:06:11 +00:00
|
|
|
(defvar rcirc-enable-emojify nil
|
|
|
|
"if non nil then automatically enable emojify-mode in rcirc buffers.")
|
|
|
|
|
2018-11-25 23:34:30 +00:00
|
|
|
(defvar rcirc-enable-erc-image nil
|
|
|
|
"if non nil then enable erc-image to display images in rcirc.")
|
|
|
|
|
2018-11-25 23:37:32 +00:00
|
|
|
(defvar rcirc-enable-erc-tweet nil
|
|
|
|
"if non nil then enable erc-tweet to display tweets in rcirc.")
|
|
|
|
|
2018-11-25 23:39:47 +00:00
|
|
|
(defvar rcirc-enable-erc-yt nil
|
|
|
|
"if non nil then enable erc-yt to display YouTube previews in rcirc.")
|
|
|
|
|
2018-04-21 04:55:02 +00:00
|
|
|
(defvar rcirc-enable-late-fix nil
|
|
|
|
"if non nil then enable rcirc-late-fix to show s/// fixes in rcirc buffers.")
|
|
|
|
|
2018-11-25 23:22:14 +00:00
|
|
|
(defvar rcirc-enable-styles nil
|
|
|
|
"if non nil then enable rcirc-styles to parse style markup codes in rcirc.")
|
|
|
|
|
2015-03-16 01:44:42 +00:00
|
|
|
(defvar rcirc-enable-znc-support nil
|
|
|
|
"if non nil then znc is enabled.")
|
2015-08-18 22:27:49 +00:00
|
|
|
|
2016-01-25 04:28:10 +00:00
|
|
|
(defvar rcirc-spacemacs-layout-name "@RCIRC"
|
|
|
|
"Name used in the setup for `spacemacs-layouts' micro-state")
|
|
|
|
|
|
|
|
(defvar rcirc-spacemacs-layout-binding "i"
|
|
|
|
"Binding used in the setup for `spacemacs-layouts' micro-state")
|