我记得有个indent-guide
也是干这事儿的……
M-x spacemacs/toggle-indent-guide or SPC t i
,好像也有indent-guide-all 的包
非常感谢! 我去查查文档, 如果要在.spacemacs文件内默认开启的话,该设置哪个变量。
你直接counsel-M-x
搜一下就有了,spacemacs/toggle-indent-guide-globally
把这个函数加到user-config里。
请问spacemacs怎么安装
在fotfiles里的dotspacemacs-additional-packages
列表中加入highligt-indent-guides
然后在dotspacemacs/user-config
里加入
(setq highlight-indent-guides-method 'character)
(setq highlight-indent-guides-responsive t)
(add-hook 'prog-mode-hook #'hightlight-indent-guides-mode)
可以达到类似pycharm的效果