M-x all-the-icons-install-fonts
安装字体,或者(setq centaur-icon nil)
禁止所有icon。
什么东西放在custom.el 什么放在custom-post.el中有点分不清楚了。
我需要(require 'org-roam-protocol)
但是理论上来说应该是放在 custom-post.el,但是在post中不生效,然后我放在custom.el 中,又会报错
Debugger entered--Lisp error: (file-missing "Cannot open load file" "No such file or directory" "org-roam-protocol")
然后放到init.el 中了倒是能用了,但是之后更新就要手动合并了
custom-post.el
会在after-init-hook
中加载。你需要的(require 'org-roam-protocol)
应该是在custom-post.el 更合理,但是因为是在emacs启动后加载,所以可能方式有可能不同。比如,可能需要像这样:
(with-eval-after-load 'org-roam
(require 'org-roam-protocol))
同理,其实这样直接放入custom.el也是没有问题的,两者分开更好管理而已。
放在custom.el 中有效,放中custom-post.el 中不生效, 不过目前也满足需求了,只是强迫症会难受点
收到 感谢 ~~~~
ivy-rich,需要图标用all-the-icons-ivy-rich
作者你好,請問,你這個打開的時候的頁面,可以顯示之前編輯文件,等等的頁面是一個包嗎?是如何實現的?
謝謝。
recentf
dashboard
emacs-dashabord
问下这个centaur-full-name
和centaur-mail-address
主要是用来设置什么的, 已经从purcell emacs
回归过来, 之前的上下移动卡顿的也解决了, 关闭了一些无用的mode
就好了
你个人的信息配置,用于Emacs发送邮件等,很多软件会用它作为基本信息。
(setq user-full-name centaur-full-name
user-mail-address centaur-mail-address)
麻烦问下, 如何关闭M-b
和M-f
移动是根据大写来判定word
(subword-mode -1)
.
谢谢 , 感谢大佬的回复,
写go代码保存文件时,自动格式化有时会出现格式错乱的问题。各位大佬有碰到过吗?
;; Rust
(use-package rustic
:init
;; We use the superior default client provided by `lsp-mode', not the
;; one rustic-mode sets up for us
(setq rustic-lsp-server 'rust-analyzer)
;; disable rustic flycheck error display in modeline. Its redundant
(setq rustic-flycheck-setup-mode-line-p nil)
:hook ((rustic-mode . (lambda ()
(lsp-ui-doc-mode)
(company-mode))))
:config
(setq rust-indent-method-chain t)
;; format using rustfmt on save
(setq rustic-format-on-save t)
(defun my-rustic-mode-hook ()
(set (make-local-variable 'company-backends)
'((company-capf company-files :with company-yasnippet)
(company-dabbrev-code company-dabbrev))))
(add-hook 'rustic-mode-hook #'my-rustic-mode-hook))
(use-package rust-playground)
(provide 'init-rust)