mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 19:23:03 +03:00
fix(emacs): remove :exports none
This commit is contained in:
parent
03c986cfb8
commit
4617e07cfd
2 changed files with 8 additions and 9 deletions
|
|
@ -3851,12 +3851,14 @@ Returns (<buffer> . <workspace-index>) or nil."
|
|||
(general-nmap "~" 'eshell))
|
||||
|
||||
(general-define-key
|
||||
"C-c c" (my/command-in-persp "Emacs.org" "conf" 1 (find-file "~/Emacs.org")))
|
||||
;; "C-c c" (my/command-in-persp "Emacs.org" "conf" 1 (find-file "~/Emacs.org"))
|
||||
"C-c c" `(,(lambda () (interactive) (find-file "~/Emacs.org")) :wk "Emacs.org"))
|
||||
|
||||
(my-leader-def
|
||||
:infix "c"
|
||||
"" '(:which-key "configuration")
|
||||
"c" (my/command-in-persp "Emacs.org" "conf" 1 (find-file "~/Emacs.org")))
|
||||
;; "c" (my/command-in-persp "Emacs.org" "conf" 1 (find-file "~/Emacs.org"))
|
||||
"c" `(,(lambda () (interactive) (find-file "~/Emacs.org")) :wk "Emacs.org"))
|
||||
|
||||
(with-eval-after-load 'tramp
|
||||
(add-to-list 'tramp-methods
|
||||
|
|
@ -3886,13 +3888,10 @@ Returns (<buffer> . <workspace-index>) or nil."
|
|||
(shell-command-to-string "yadm ls-files $HOME --full-name") "\n")))))
|
||||
|
||||
(general-define-key
|
||||
"C-c f" (my/command-in-persp
|
||||
"yadm file" "conf" 1
|
||||
(my/open-yadm-file)))
|
||||
"C-c f" '(my/open-yadm-file :wk "yadm file"))
|
||||
|
||||
(my-leader-def
|
||||
"cf" (my/command-in-persp
|
||||
"yadm file" "conf" 1
|
||||
(my/open-yadm-file)))
|
||||
"cf" '(my/open-yadm-file :wk "yadm file"))
|
||||
|
||||
(unless (or my/is-termux my/remote-server)
|
||||
(load-file (expand-file-name "mail.el" user-emacs-directory)))
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#+PROPERTY: header-args :mkdirp yes
|
||||
#+PROPERTY: header-args:bash :tangle-mode (identity #o755) :comments link :shebang "#!/usr/bin/env bash"
|
||||
#+PROPERTY: header-args:emacs-lisp :tangle ~/.emacs.d/init.el :mkdirp yes :eval never-export :exports none
|
||||
#+PROPERTY: header-args:emacs-lisp :tangle ~/.emacs.d/init.el :mkdirp yes :eval never-export :exports both
|
||||
#+TODO: CHECK(s) | OFF(o)
|
||||
#+TITLE: Emacs config
|
||||
#+OPTIONS: broken-links:auto h:6 toc:nil
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue