This file contains 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
"use strict"; | |
// // Future versions of Hyper may add additional config options, | |
// // which will not automatically be merged into this file. | |
// // See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// // choose either `'stable'` for receiving highly polished, | |
// // or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', | |
// // default font size in pixels for all tabs |
This file contains 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
SCRIPT_FILENAME="setup-env.sh" | |
function get_script_url() { | |
curl -s https://api.github.com/users/$1/gists | # list all gists | |
grep "\"filename\": \"$2\"" -A 5 -B 1 | # get the file object | |
grep "raw_url" | # get raw_url line | |
sed 's/.*"raw_url": "\(.*\)",.*/\1/' # extract url | |
} | |
sudo -u $USER bash -c "$(curl -s $(get_script_url "rafael-g-depaulo" "setup-env.sh"))" | |
This file contains 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
######### add to zshrc | |
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/home/$USER/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME |
This file contains 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
# setup link? https://medium.com/@gusflopes86/ambiente-de-desenvolvimento-react-e-react-native-no-windows-com-wsl-f505906d636c | |
# THIS FIXES IT???????? | |
# https://askubuntu.com/questions/1142359/error-0x80080005-server-execution-failed-while-installing-ubuntu-on-windows | |
# use this to install WSL | |
# https://docs.microsoft.com/en-us/windows/wsl/install-win10#step-4---download-the-linux-kernel-update-package | |
# For GUI Apps like Cypress | |
# https://nickymeuleman.netlify.app/blog/gui-on-wsl2-cypress |
This file contains 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
" Disable compatibility with vi which can cause unexpected issues. | |
set nocompatible | |
" Enable type file detection. Vim will be able to try to detect the type of file in use. | |
filetype on | |
" Enable plugins and load plugin for the detected file type. | |
filetype plugin on | |
" Load an indent file for the detected file type. |
This file contains 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
{"lastUpload":"2020-06-24T02:23:54.183Z","extensionVersion":"v3.4.3"} |