手残更新 Pycharm 2020.1 版时将配置文件都删除了😂;在此重新记录下配置!

pycharm

安装教程参考:IntelliJ IDEA + Pycharm 2020.1 版安装 | 隐舍

编辑器字体

设置路径:File | Settings | Editor | Font

Python 文件模板

设置路径:File | Settings | Editor | File and Code Templates

1
2
3
4
5
6
7
8
# -*- coding: utf-8 -*-

"""
@Time : ${DATE}
@Author : ${USER}
@File : ${NAME}
@Description :
"""

插件

设置路径:File | Settings | Plugins

安装

  1. 直接在 Marketplace 搜索安装;【Ps:安装速度慢且很可能失败】
  2. 官网下载插件安装:https://plugins.jetbrains.com/pycharm

插件

  • Atom Material Icons
  • Material Theme UI
    (个人感觉还没自带主题好看😂,不用了)
  • Dracula Theme
    比自带主题稍微好看点!
  • Rainbow Brackets
  • Grep Console
    设置输出信息配色:
  • GitToolBox
    在编辑器中显示详细的 Git 信息;

autopep8 代码格式

设置路径:File | Settings | Tools | External Tools

  • Name: 可以任意输入,例如 autopep8
  • Program: autopep8 或者 autopep8.exe 绝对路径
  • Parameter: --in-place --aggressive $FilePath$
  • Working directory:$ProjectFileDir$
  • Output filters:$FILE_PATH$:$LINE$:$COLUMN$:.*

autopep8 配置

切换终端 powershell

Windows 设置路径:File | Settings | Tools | Terminal

联系作者