如何应用 spacemacs 命令(setq-default ...)
How do I apply the spacemacs command (setq-default...)
所以我是 spacemacs 的新手,我的 python 选项卡有问题。我找到了此问题的 解决方案。他解释的场景正是我的 python 图层遇到的问题,但我不知道如何应用他提供的解决方案,即:
If that is the case, you can fix the problem by running
(setq-default python-indent-offset 4)
Where/how 我 运行 命令“(setq-default python-indent-offset 4)”到底是什么?我要把它放在我的 spacemacs 配置中吗?或者其他地方?
谢谢!
我在输入相关问题 (here) 时找到了这个问题的答案。
诸如此类的命令进入您的 init.el 配置,可通过键入 SPC-fe i
访问
希望这对所有 spacemacs 新手有帮助。 (如果我错了或不完全理解,请随时纠正我)
编辑 1
我只是为那些好奇的人回答一些背景信息。命令
(setq-default python-indent-offset 4)
实际上来自 lisp 编程语言家族。所以 spacemacs 基本上使用源代码控制配置。它也可能类似地进入您的 spacemacs 配置(SPC f e d),尽管我相信 init.el 是此类设置的合适位置
所以我是 spacemacs 的新手,我的 python 选项卡有问题。我找到了此问题的
If that is the case, you can fix the problem by running
(setq-default python-indent-offset 4)
Where/how 我 运行 命令“(setq-default python-indent-offset 4)”到底是什么?我要把它放在我的 spacemacs 配置中吗?或者其他地方?
谢谢!
我在输入相关问题 (here) 时找到了这个问题的答案。
诸如此类的命令进入您的 init.el 配置,可通过键入 SPC-fe i
访问希望这对所有 spacemacs 新手有帮助。 (如果我错了或不完全理解,请随时纠正我)
编辑 1
我只是为那些好奇的人回答一些背景信息。命令
(setq-default python-indent-offset 4)
实际上来自 lisp 编程语言家族。所以 spacemacs 基本上使用源代码控制配置。它也可能类似地进入您的 spacemacs 配置(SPC f e d),尽管我相信 init.el 是此类设置的合适位置