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
| #!/bin/bash | |
| # Prerequisites: | |
| # 1. Install homebrew and iTerm2 | |
| # 2. Run: brew install git coreutils antidote | |
| _UNDERSCORE="\x1b[4m" | |
| _RESET_STYLE="\x1b[0m" | |
| _RESET_LINE="\r\x1b[K" |
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
| #!/bin/bash | |
| # Prerequisites: | |
| # Run: sudo apt install -y zsh curl git coreutils | |
| _UNDERSCORE="\x1b[4m" | |
| _RESET_STYLE="\x1b[0m" | |
| _RESET_LINE="\r\x1b[K" | |
| cd ~ |
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
| #!/bin/bash | |
| # Prerequisites: | |
| # Run: sudo apt install -y zsh curl git coreutils | |
| _UNDERSCORE="\x1b[4m" | |
| _RESET_STYLE="\x1b[0m" | |
| _RESET_LINE="\r\x1b[K" | |
| cd ~ |
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
| # List of zsh plugins | |
| # Wiki: https://getantidote.github.io/usage | |
| zsh-users/zsh-syntax-highlighting | |
| zsh-users/zsh-autosuggestions | |
| zsh-users/zsh-completions | |
| zsh-users/zsh-history-substring-search | |
| # Prompt theme | |
| sindresorhus/pure kind:fpath |
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
| #!/bin/bash | |
| _UNDERSCORE="\x1b[4m" | |
| _RESET_STYLE="\x1b[0m" | |
| _RESET_LINE="\r\x1b[K" | |
| cd ~ | |
| printf "$_RESET_LINE[1/4] Downloading .vimrc" | |
| err=$(curl -sS https://gist.githubusercontent.com/reinhardlinardi/f867c411a0a8abd86468aa381ba7f0e6/raw/.vimrc-mac -o .vimrc 2>&1) |
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
| #!/bin/bash | |
| _UNDERSCORE="\x1b[4m" | |
| _RESET_STYLE="\x1b[0m" | |
| _RESET_LINE="\r\x1b[K" | |
| cd ~ | |
| printf "$_RESET_LINE[1/4] Downloading .vimrc" | |
| err=$(curl -sS https://gist.githubusercontent.com/reinhardlinardi/9ead07d0d4b8f2be1f917deeff56a8eb/raw/.vimrc-linux -o .vimrc 2>&1) |
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
| # --- zsh settings --- | |
| # Disable zsh magic functions, prevents slow paste | |
| DISABLE_MAGIC_FUNCTIONS=true | |
| # Source antidote (zsh plugin manager) | |
| source $(brew --prefix)/opt/antidote/share/antidote/antidote.zsh | |
| # Initialize plugins | |
| # Plugins list: ~/.zsh_plugins.txt |
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
| # --- zsh settings --- | |
| # Disable zsh magic functions, prevents slow paste | |
| DISABLE_MAGIC_FUNCTIONS=true | |
| # Source antidote (zsh plugin manager) | |
| source ${ZDOTDIR:-~}/.antidote/antidote.zsh | |
| # Initialize plugins | |
| # Plugins list: ~/.zsh_plugins.txt |
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
| " Enable syntax highlighting | |
| syntax on | |
| " Show line numbers | |
| set number | |
| set numberwidth=1 | |
| " Enable auto indentation | |
| set smartindent | |
| set tabstop=4 |
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
| " Enable syntax highlighting | |
| syntax on | |
| " Show line numbers | |
| set number | |
| set numberwidth=1 | |
| " Enable auto indentation | |
| set smartindent | |
| set tabstop=4 |