Last active
February 17, 2022 14:44
-
-
Save perryBunn/6063fe655b8916f7718f154953732714 to your computer and use it in GitHub Desktop.
Sublime Text Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"folders": [ | |
{ | |
"path": ".", | |
/*"name": "root",*/ | |
"folder_exclude_patterns": ["__pycache__"] | |
}, | |
], | |
"settings": { | |
"SublimeLinter.linters.flake8.disable": true, | |
"SublimeLinter.linters.pylint.disable": false, | |
"SublimeLinter.linters.pylint.excludes": "*/*.md", | |
// "SublimeLinter.linters.pylint.args": ["--rcfile=${folder}/pylintrc"], | |
"SublimeLinter.linters.pylint.python": "${folder}/venv/bin/python", | |
"SublimeLinter.linters.pylint.executable": "${folder}/venv/bin/pylint", | |
}, | |
/*"build_systems": {}*/ | |
} | |
//s |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"font_face": "Fira Code Regular", | |
"font_options": | |
[ | |
"subpixel_antialias", | |
"gray_antialias" | |
], | |
"ignored_packages": | |
[ | |
"Vintage", | |
], | |
"added_words": | |
[ | |
"Nmap", | |
"Lua", | |
], | |
"theme": "Default Dark.sublime-theme", | |
"rulers": [ | |
80 | |
], | |
"spell_check": true, | |
"wrap_width": 80, | |
"wrap_widith_style": "min", | |
"highlight_line": true, | |
"fallback_encoding": "ASCII", | |
"bold_folder_labels": true, | |
"tab_size": 4, | |
"always_show_minimap_viewport": true, | |
"trim_trailing_white_space_on_save": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"highlight_modified_tabs": true, | |
"show_encoding": true, | |
"color_scheme": "Packages/Dracula Color Scheme/Dracula.tmTheme", | |
"dark_color_scheme": "Monokai.sublime-color-scheme", | |
"light_color_scheme": "Monokai.sublime-color-scheme", | |
"auto_complete_triggers": [ | |
{ | |
"characters": [":", "@"], | |
"selector": "text.html.markdown, text.git.commit", | |
}, | |
], | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SublimeLinter Settings - User | |
{ | |
"linters": { | |
"pylint": { | |
"styles": [ | |
{ | |
"mark_style": "fill", | |
"icon": "star", | |
"types": ["error"] | |
}, | |
{ | |
"mark_style": "fill", | |
"icon": "pointer", | |
"types": ["warning"] | |
}, | |
{ | |
"mark_style": "solid_underline", | |
"scope": "region.yellowish", | |
"icon": "pointer-outline", | |
"codes": ["E501"] | |
} | |
] | |
} | |
}, | |
"paths": { | |
"linux": [], | |
"osx": [], | |
"windows": [] | |
}, | |
"debug": true, | |
"lint_mode": "background", | |
"show_panel_on_save": "window" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment