Vim 插件配置

语法检查与代码格式化——ALE

异步检查语法

  • pycodestyle —— 前身为pep8,检查Python语法以及格式

安装

1
pip install pycodestyle

配置

配置文件在 ~/.config/pycodestyle

代码格式化

  • yapf —— Google出品的Python代码格式化工具
  • isort —— 格式化 import 语句

安装

1
2
pip install yapf
pip install isort

配置

配置文件在 ~/.config/yapf/style~/.isort.cfg