We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not sure this is the best place for this, but here is my use-package config for atomic-chrome
(use-package atomic-chrome :init (setq atomic-chrome-server-ghost-text-port 4002) (setq atomic-chrome-default-major-mode 'org-mode) ;; (setq atomic-chrome-buffer-open-style) (atomic-chrome-start-server) :config (define-key atomic-chrome-edit-mode-map (kbd "C-c C-c") nil) :bind (("s-c C-c" . atomic-chrome-close-current-buffer)))
A decent number of the config settings have to be in :init because it needs to run at startup to accept conections
:init
the :config line is for removing the C-c C-c binding so that org-mode can use it
:config
C-c C-c
the :bind line is to get back the closing command by binding it to another keybind.
:bind
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Not sure this is the best place for this, but here is my use-package config for atomic-chrome
A decent number of the config settings have to be in
:init
because it needs to run at startup to accept conectionsthe
:config
line is for removing theC-c C-c
binding so that org-mode can use itthe
:bind
line is to get back the closing command by binding it to another keybind.The text was updated successfully, but these errors were encountered: