Skip to content

Instantly share code, notes, and snippets.

@Staubgeborener
Last active July 22, 2020 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Staubgeborener/e3993d936ffe39fbda4095e456e38d6f to your computer and use it in GitHub Desktop.
Save Staubgeborener/e3993d936ffe39fbda4095e456e38d6f to your computer and use it in GitHub Desktop.
Sublime Settings (predawn and dark-material)

Setup for Sublime Text 3.2.2, Build 3211

Hæck Font: https://github.com/ignatov/Haack

Tools > Command Palette... > Install Package Control

Tools > Command Palette... > Package Control: Install Package > Predawn

Tools > Command Palette... > Package Control: Install Package > Dark Material

Tools > Command Palette... > Package Control: Install Package > Anaconda

Tools > Command Palette... > Package Control: Install Package > BracketHighlighter

Tools > Command Palette... > Package Control: Install Package > SublimeCodeIntel

Tools > Command Palette... > Package Control: Install Package > SideBarEnhancements

{
"auto_formatting": true,
"autoformat_ignore":
[
"E309",
"E501"
],
"pep8_ignore":
[
"E309",
"E501"
],
"anaconda_linter_underlines": false,
"anaconda_linter_mark_style": "none",
"display_signatures": false,
"disable_anaconda_completion": true,
//"python_interpreter": "C:\\Users\\username\\AppData\\Local\\Programs\\Python\\Python38\\python.exe" //windows 10
//"python_interpreter": "/usr/bin/python3.8" //linux / mac
}
//standard sublime cpp build - works like a charm with mingw64
{
"shell_cmd": "g++ \"${file}\" -o \"${file_path}/${file_base_name}\"",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.c++",
"variants":
[
{
"name": "Run",
"shell_cmd": "g++ \"${file}\" -o \"${file_path}/${file_base_name}\" && \"${file_path}/${file_base_name}\""
}
]
}
{
"color_scheme": "Packages/Predawn/predawn.tmTheme",
"font_face": "Haeck",
"font_size": 10,
"ignored_packages":
[
"Vintage"
],
"predawn_findreplace_small": false,
"predawn_quick_panel_small": false,
"predawn_sidebar_arrows": false,
"predawn_sidebar_large": false,
"predawn_sidebar_medium": false,
"predawn_sidebar_narrow": false,
"predawn_sidebar_small": false,
"predawn_sidebar_xlarge": false,
"predawn_sidebar_xsmall": false,
"predawn_tabs_active_underline": false,
"predawn_tabs_large": false,
"predawn_tabs_medium": false,
"predawn_tabs_small": false,
"theme": "Dark-Material.sublime-theme",
"overlay_scroll_bars": "enabled",
"line_padding_top": 3,
"line_padding_bottom": 3,
"font_options": [ "gray_antialias" ], // On retina Mac
"always_show_minimap_viewport": true,
"bold_folder_labels": true
}
{
//"shell_cmd": "make"
"cmd": ["C:\\Users\\username\\AppData\\Local\\Programs\\Python\\Python38\\python.exe", "-u", "$file"], //windows 10
//"cmd": ["/usr/bin/python3.8", "-u", "$file"], //linux / mac
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"quiet": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment