Skip to content

Instantly share code, notes, and snippets.

View tomasflopes's full-sized avatar

Tomás Lopes tomasflopes

View GitHub Profile
@tomasflopes
tomasflopes / cloudSettings
Last active March 15, 2020 19:08
Settings
{"lastUpload":"2020-03-15T19:08:55.258Z","extensionVersion":"v3.4.3"}
[
{
"key": "ctrl+shift+7",
"command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+[Semicolon]",
"command": "workbench.action.terminal.toggleTerminal"
},
@tomasflopes
tomasflopes / settings.json
Last active May 9, 2023 10:57
VSCode Settings
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"explorer.confirmDragAndDrop": false,
"editor.renderWhitespace": "none",
"window.menuBarVisibility": "hidden",
"window.titleBarStyle": "native",
"editor.quickSuggestions": {
"other": true,
"comments": true,
clear
unbindall
echo "+=====================================================+"
echo "| NUM | | * | - |"
echo "| LOCK | / | MOLOTOV | fiveseven |"
echo "| | | | tec9 |"
echo "|-------------|-------------|-------------|-----------|"
echo "| 7 | 8 | 9 | + |"
echo "| HE | FLASHBANG | SMOKE | |"
SPACESHIP_PROMPT_ORDER=(
user # Username section
dir # Current directory section
host # Hostname section
git # Git section (git_branch + git_status)
hg # Mercurial section (hg_branch + hg_status)
exec_time # Execution time
line_sep # Line break
vi_mode # Vi-mode indicator
jobs # Background jobs indicator
# Path to your oh-my-zsh installation.
export ZSH="/home/kappa-laptop/.oh-my-zsh"
alias "emulator"="/home/kappa-laptop/Android/Sdk/emulator/emulator"
alias "edge"="microsoft-edge"
alias "c."="code ."
alias "nv"="nvim"
alias "rb"="shutdown -r 0"
alias "sd"="shutdown 0"
alias "n"="nautilus"
// 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',
code --install-extension formulahendry.auto-close-tag &&
code --instal-extension formulahendry.auto-rename-tag &&
code --install-extension aaron-bond.better-comments &&
code --install-extension coenraads.bracket-pair-colorizer-2 &&
code --install-extension streetsidesoftware.code-spell-checker &&
code --install-extension streetsidesoftware.code-spell-checker-portuguese &&
code --install-extension adpyke.codesnap &&
code --install-extension naumovs.color-highlight &&
code --install-extension kamikillerto.vscode-colorize &&
code --install-extension aeschli.vscode-css-formatter &&
{
"Setup StyleSheet React Native": {
"prefix": "rnss",
"body": [
"import { StyleSheet } from 'react-native';",
"",
"const styles = StyleSheet.create({",
" container: {",
" flex: 1,",
" justifyContent: 'center',",
{
"Create React-Native BoilerPlate": {
"prefix": "rnfc",
"body": [
"import React from 'react';",
"import { Text, View } from 'react-native';",
"",
"import styles from './styles';",
"",
"const ${TM_DIRECTORY/.*\\/(.*)$/$1/g}: React.FC = () => {",