This re-styles your sublime text sidebar to be dark, it fits default Monokai theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
Based on:
| @echo off | |
| setlocal enabledelayedexpansion | |
| rem !!! build requirements !!! | |
| rem Visual Studio 2019 or 2022 | |
| rem 7-Zip - https://www.7-zip.org/download.html | |
| rem Python - https://www.python.org/downloads/ | |
| rem CMake - http://www.cmake.org/download/ | |
| rem ninja.exe - https://github.com/ninja-build/ninja/releases/latest |
| #!/bin/sh | |
| # @SC: needs to have directories named llvm and clang in the same dir | |
| # as this script | |
| mkdir build | |
| cd build | |
| cmake -G "Unix Makefiles" \ | |
| -DCMAKE_BUILD_TYPE=MinSizeRel \ |
This re-styles your sublime text sidebar to be dark, it fits default Monokai theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
Based on: