惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
The Cloudflare Blog
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 司徒正美
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
C
Check Point Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
V
V2EX
F
Fortinet All Blogs
B
Blog
大猫的无限游戏
大猫的无限游戏
N
Netflix TechBlog - Medium
B
Blog RSS Feed
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

Emacs

Emacs 内好用漂亮的 YouTube Music 客户端 好用的 Emacs 数据库客户端 给 org-zettel-ref-mode 添加 AI 总结功能 Emacs 30 新特性预览 『Made with Emacs』 博客收集 新手向问下,调试程序 求助, org 文件使用 emacs –script 执行 org-publish-all 的时候代码块没有高亮? Emacs 在 Windows 下体验如何 GPG in Emacs Emacs 28 新特性介绍 Emacs Golang 开发环境配置 [Emacs Tips] 使用 Dired 快速移动文件 spacemacs 如何让当前 buffer 中的内容水平居中? 公众号里怎么直接实现 Latex 写出来的科学文章 PDF 之类的效果? macOS 10.14.4 状态栏电池百分比选项回归(不好意思 以前一直都有😂) emacs 自动安装 package 包 emacs 怎么控制光标 怎么知道 emacs 启用了那几个安装包? 源更新后不能保存吗? 为什么在 Emacs 下打开 Python 文件就是显示 Tab 时 8 个字符 Compare Doom-emacs, Spacemacs, and vanilla Emacs Emacs 补全头文件的那个 company-c-header 有人用过吗? elpy 把 importmagic 给 remove 了😂 Emacs 在 window 10 下面运行好慢呀,有没有人和我一样? emacs 的 org mode 好强大啊 HHKB Pro2 接上 U 盘后电脑提示“USB 集线器没有足够的电源” 不谈 Spacemacs,只谈 Centaur Emacs 在用 brew 重新安装 Emacs 时遇到的问题,如下图所示。 emacs 的 dired 模式有快速切换目录的方案或插件么? 用 emacs 的,小指伤不起啊
在 emacsclient 中应用中文字体设置
raawaa · 2016-03-01 · via Emacs

daemon 模式下用emacsclient -c发现字体设置没有生效,折腾一番之后发现如下方法:

;;; 设置中文字体
(defun my-apply-font ()
  (set-default-font "Consolas")
  (set-fontset-font "fontset-default" 'chinese-gbk "微软雅黑")

  (setq face-font-rescale-alist '(("宋体" . 1.2)
                                  ("微软雅黑" . 1.1)
                                  )))
(my-apply-font)
;;; 使字体设置应用到 client 中
(add-hook 'after-make-frame-functions
          (lambda (frame)
            (select-frame frame)
            (my-apply-font)))