测试Python 运维首页投稿(暂停使用,暂停投稿)

大神KennethReitz的python编辑器选择

2017-02-12  本文已影响2397人  treelake

原文kennethreitz大神的博客 - Sublime Text 3 Heaven

某天晚上,我决定再次考虑我的编辑器配置,并且尝试所有我能想到的编辑器。我重新配置了vim (neovim),PyCharm,Eclipse,Emacs (Spacemacs),VSCode,Atom,Textual等等。我知道我会保持我的选择——Sublime Text 3(我已经使用它5年多了),但是很高兴它再次被验证是最好的(对我来说)。

所以,我决定从头重建这个配置,并与你分享这个快乐的重建。

Sublime界面主题:Material

Sublime Text 拓展
版本控制
语法包
有趣的玩具

其它配置

User Key Bindings

[
    { "keys": ["super+2"], "command": "next_bookmark" },
    { "keys": ["super+1"], "command": "prev_bookmark" },
    { "keys": ["super+3"], "command": "toggle_bookmark" },
    { "keys": ["super+shift+3"], "command": "clear_bookmarks" },
    {"keys": ["super+g"], "command": "git_status"},
    {
        "keys": ["super+d"],
        "command": "set_layout",
        "args":
        {
            "cols": [0.0, 0.5, 1.0],
            "rows": [0.0, 1.0],
            "cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
        }
    },
]

User Settings

{
    "auto_complete": false,
    "close_windows_when_empty": true,
    "color_scheme": "Packages/User/SublimeLinter/Tomorrow-Night-Italics (SL).tmTheme",
    "draw_white_space": "all",
    "find_selected_text": true,
    "fold_buttons": false,
    "folder_exclude_patterns":
    [
        ".svn",
        ".git",
        ".hg",
        "CVS",
        "_build",
        "dist",
        "build",
        "site"
    ],
    "font_face": "Operator Mono SSm Light",
    "font_options":
    [
        "subpixel_antialias"
    ],
    "font_size": 12.0,
    "highlight_line": true,
    "hot_exit": false,
    "ignored_packages":
    [
        "Git",
        "GitSavvy",
        "RestructuredText",
        "SublimeLinter-flake8",
        "Vintage"
    ],
    "material_theme_accent_orange": true,
    "material_theme_accent_scrollbars": true,
    "material_theme_appbar_orange": true,
    "material_theme_arrow_folders": true,
    "material_theme_bullet_tree_indicator": true,
    "material_theme_compact_sidebar": true,
    "material_theme_contrast_mode": true,
    "material_theme_small_statusbar": true,
    "material_theme_small_tab": true,
    "material_theme_tree_headings": false,
    "remember_open_files": false,
    "rulers":
    [
        72,
        79,
        100
    ],
    "theme": "Material-Theme-Darker.sublime-theme",
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true
}

humor

[python newbie](https://twitter.com/getpy/status/829241707610923010)
上一篇下一篇

猜你喜欢

热点阅读