0%

Emacs Memo

Emacs Memo

改变文件编码

改变文件的编码格式,例如转换到 utf-8 格式
C-x RET f 选择 utf=8, 然后保存 C=x, C-s

spacemacs 配置

配置清华源

1
2
3
4
(setq configuration-layer--elpa-archives
'(("melpa-cn" . "http://mirrors.tuna.tsinghua.edu.cn/elpa/melpa/")
("org-cn" . "http://mirrors.tuna.tsinghua.edu.cn/elpa/org/")
("gnu-cn" . "http://mirrors.tuna.tsinghua.edu.cn/elpa/gnu/")))

configparser

遇到import configparser失败问题

1
pip install configparser==3.3.0.post2

PEP8 配置

PEP8 用来做语法检查的,配置文件地址:~/.config/pep8

1
2
3
[pep8]
ignore = E226,E302,E41
max-line-length = 160

flake8 配置

~/.config/flake8

1
2
3
[flake8]
ignore = E226,E302,E41
max-line-length = 160

yapf 配置

yapf 是自动格式化用的,配置文件地址 ~/.config/yapf/style

1
2
3
[style]
based_on_style = pep8
column_limit = 160