this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge brewfile with work packages

+79 -3
+79 -3
.Brewfile
··· 5 5 tap "homebrew/cask-fonts" 6 6 tap "homebrew/cask" 7 7 tap "homebrew/core" 8 + tap "homebrew/services" 8 9 9 10 10 11 # ============================================================================== 11 12 # Third-party/custom taps 12 13 # ============================================================================== 13 14 tap "ian-h-chamberlain/dotfiles" 15 + tap "srkomodo/tap" 14 16 15 17 16 18 # ============================================================================== ··· 32 34 # User-friendly launcher for Bazel 33 35 brew "bazelisk" 34 36 37 + # Bash and Zsh completion for Cargo 38 + brew "cargo-completion" 39 + 40 + # Formatting tools for C, C++, Obj-C, Java, JavaScript, TypeScript 41 + brew "clang-format" 42 + 35 43 # Statistics utility to count lines of code 36 44 brew "cloc" 37 45 ··· 42 50 brew "ctags" 43 51 44 52 # Get a file from an HTTP, HTTPS or FTP server 45 - brew "curl" 53 + brew "curl", args: ["with-libssh2"] 46 54 47 55 # GNU Emacs text editor 48 56 brew "emacs" ··· 50 58 # User-friendly command-line shell for UNIX-like operating systems 51 59 brew "fish" 52 60 61 + # GNU debugger 62 + brew "gdb" 63 + 53 64 # Distributed revision control system 54 65 brew "git" 55 66 56 67 # Git extension for versioning large files 57 68 brew "git-lfs" 69 + 70 + # Open source programming language to build simple/reliable/efficient software 71 + brew "go" 72 + 73 + # Graph visualization software from AT&T and Bell Labs 74 + brew "graphviz" 58 75 59 76 # Improved top (interactive process viewer) 60 77 brew "htop" ··· 71 88 # Pyenv plugin to manage virtualenv 72 89 brew "pyenv-virtualenv" 73 90 91 + # Search tool like grep and The Silver Searcher 92 + brew "ripgrep" 93 + 74 94 # The Rust toolchain installer 75 95 brew "rustup-init" 76 96 77 97 # Static analysis and lint tool, for (ba)sh scripts 78 98 brew "shellcheck" 79 99 100 + # An automatic updater for ShadowFox 101 + brew "srkomodo/tap/shadowfox-updater" 102 + 80 103 # Programatically correct mistyped console commands 81 104 brew "thefuck" 82 105 106 + # Terminal multiplexer 107 + brew "tmux" 108 + 109 + # Display directories as trees (with optional color/HTML output) 110 + brew "tree" 111 + 112 + # Vi 'workalike' with many additional features 113 + brew "vim" 114 + 83 115 # Internet file retriever 84 116 brew "wget" 85 117 ··· 88 120 89 121 90 122 # ============================================================================== 123 + # Work-specific packages 124 + # ============================================================================== 125 + if `yadm config local.class`.strip == "work" 126 + # Collection of portable C++ source libraries 127 + brew "boost@1.55" 128 + 129 + # Serialization library for C++, supporting Java, C#, and Go 130 + brew "flatbuffers" 131 + 132 + # GNU compiler collection 133 + brew "gcc@7" 134 + 135 + # library to access smi mib information 136 + brew "libsmi" 137 + 138 + # GNOME XML library 139 + brew "libxml2" 140 + 141 + # Next-gen compiler infrastructure 142 + brew "llvm@6" 143 + 144 + # Implements SNMP v1, v2c, and v3, using IPv4 and IPv6 145 + brew "net-snmp" 146 + 147 + # Protocol buffers (Google's data interchange format) 148 + brew "protobuf" 149 + 150 + # Rich and complete approach to parallelism in C++ 151 + brew "tbb" 152 + end 153 + 154 + 155 + # ============================================================================== 91 156 # Casks 92 157 # ============================================================================== 93 158 94 - # Install in home dir instead of /Applications 95 - cask_args appdir: "~/Applications" if `yadm config local.class`.strip == "personal" 159 + if `yadm config local.class`.strip == "personal" 160 + # Install in home dir instead of /Applications 161 + cask_args appdir: "~/Applications" 162 + end 96 163 97 164 # Torrent client 98 165 cask "deluge" 99 166 167 + # Docker for macOS Desktop 168 + cask "docker" 169 + 100 170 # Text editor 101 171 cask "emacs" 102 172 173 + # Web browser 174 + cask "firefox" 175 + 103 176 # Preferred font for fixed-width text e.g. terminal + editors 104 177 cask "ian-h-chamberlain/dotfiles/font-input" 105 178 106 179 # Image editor 107 180 cask "gimp" 181 + 182 + # Packet capture tool 183 + cask "wireshark" 108 184 109 185 # Terminal emulator 110 186 cask "iterm2"