diff --git a/README.md b/README.md index 21f7897..5d78666 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Martim's dotfiles -![Screenshot of my shell prompt](https://i.imgur.com/3AroNRu.png) +![Screenshot of my shell prompt](static/screenshot.png) This repository contains my personal dotfiles, as well as several scripts to install applications and configure settings. Although the bash configuration settings should (mostly) work on any Unix-based system, most of these scripts were only designed to run on macOS and likely won't run at all on any other OS. @@ -75,9 +75,10 @@ Note that these are my personal dotfiles, so if you'd like to customize them to ## Thanks -- [@mathiasbyens](https://mathiasbynens.be/) for his [dotfiles repository](https://github.com/mathiasbynens/dotfiles), off of which this repository was based +- [@mathiasbyens](https://mathiasbynens.be/) for his [dotfiles repository](https://github.com/mathiasbynens/dotfiles), off of which this repository was initially based +- [@ikuwow](https://github.com/ikuwow) for his [dotfiles](https://github.com/ikuwow/dotfiles) - [@kennethreitz](https://www.kennethreitz.org/) for a few [functions and inspiration](https://github.com/kennethreitz/dotfiles) - [@kevinsuttle](https://kevinsuttle.com/) for a great compilation of [macOS defaults](https://github.com/kevinSuttle/macOS-Defaults) -- [@coreyschafer](https://coreyms.com/) for his awesome [YouTube tutorials](https://www.youtube.com/user/schafer5) on multiple topics -- [@henriquebastos](https://henriquebastos.net/) for [documentation](https://medium.com/@henriquebastos/the-definitive-guide-to-setup-my-python-workspace-628d68552e14) on getting Jupyter to run nicely with pyenv - [@ryanpavlick](https://github.com/rpavlick) for his [macOS dock customization functions](https://github.com/rpavlick/add_to_dock) +- [@br3ndonland](https://github.com/br3ndonland) for his [dotfiles](https://github.com/br3ndonland/dotfiles) +- [@pablopunk](https://github.com/pablopunk) for his [dotfiles](https://github.com/pablopunk/dotfiles) diff --git a/dock.sh b/dock.sh index 04f8503..aedac09 100755 --- a/dock.sh +++ b/dock.sh @@ -121,7 +121,7 @@ add_app_to_dock "Linear" add_app_to_dock "Slack" add_app_to_dock "Visual Studio Code" add_app_to_dock "Cursor" -add_app_to_dock "Warp" +add_app_to_dock "Hyper" add_app_to_dock "System Settings" add_folder_to_dock ~/Downloads --sortby 2 --displayas 1 --viewcontentas 1 diff --git a/mackup/.hyper.js b/mackup/.hyper.js index 2d1da32..71a8e84 100644 --- a/mackup/.hyper.js +++ b/mackup/.hyper.js @@ -19,6 +19,8 @@ module.exports = { lineHeight: 1, // letter spacing as a relative unit letterSpacing: 0, + // the number of rows to be persisted in terminal buffer for scrolling + scrollback: 100_000, // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) cursorColor: 'rgba(248,28,229,0.8)', // terminal text color under BLOCK cursor @@ -101,9 +103,7 @@ module.exports = { // Supported Options: // 1. 'SOUND' -> Enables the bell as a sound // 2. false: turns off the bell - scrollback: 10000, - // the number of rows to be persisted in terminal buffer for scrolling - bell: 'SOUND', + bell: false, // An absolute file path to a sound file on the machine. // bellSoundURL: '/path/to/sound/file', // if `true` (without backticks and without quotes), selected text will automatically be copied to the clipboard @@ -135,10 +135,6 @@ module.exports = { hyperStatusLine: { aheadColor: 'ivory', }, - verminal: { - fontFamily: '"Source Code Pro", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', - fontSize: 12, - }, }, // a list of plugins to fetch and install from npm // format: [@org/]project[#version] @@ -147,9 +143,8 @@ module.exports = { // `@company/project` // `project#1.0.1` plugins: [ - 'hyper-statusline', - 'verminal', - // 'hyper-chesterish', + "hyper-snazzy", + "hyper-statusline", ], // in development, you can create a directory under // `~/.hyper_plugins/local/` and include it here diff --git a/static/screenshot.png b/static/screenshot.png new file mode 100644 index 00000000..8f2a021 Binary files /dev/null and b/static/screenshot.png differ