sudo apt update && sudo apt upgrade
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
| # Command line tools | |
| brew 'ata' # ChatGPT in the terminal | |
| brew 'cask' # Extension to brew supporting installation of graphical applications | |
| brew 'ffmpeg' # Complete solution to record, convert and stream audio and video | |
| brew 'gh' # GitHub's CLI | |
| brew 'git' # Version control | |
| brew 'htop' # Interactive process viewer, an enhanced version of top | |
| brew 'imagemagick' # Command-line tool for manipulating images | |
| brew 'mailsy' # Command-line email client or email utility | |
| brew 'mas' # Mac App Store command-line interface |
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
| { | |
| "description": "Switch Language with cmd+1/2/3/4 (en, ru, he, ar)", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "1", | |
| "modifiers": { | |
| "mandatory": ["left_command"], | |
| "optional": ["any"] | |
| } |
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
| 1. Открываем Sublime Text -> Tools -> Build System -> New Build System | |
| 2. Вставляем в открывшийся файл следующие строки, чтобы получилось вот так: | |
| { | |
| "cmd": ["python3", "-i", "-u", "$file"], | |
| "file_regex": "^[ ]File \"(...?)\", line ([0-9]*)", | |
| "selector": "source.python" | |
| } | |
| 3. Сохраняем файл с названием python3.sublime-build и не меняем путь предложенный редактором |