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
{"lastUpload":"2020-03-15T19:08:55.258Z","extensionVersion":"v3.4.3"} |
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
[ | |
{ | |
"key": "ctrl+shift+7", | |
"command": "editor.action.blockComment", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+[Semicolon]", | |
"command": "workbench.action.terminal.toggleTerminal" | |
}, |
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
{ | |
"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, |
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
clear | |
unbindall | |
echo "+=====================================================+" | |
echo "| NUM | | * | - |" | |
echo "| LOCK | / | MOLOTOV | fiveseven |" | |
echo "| | | | tec9 |" | |
echo "|-------------|-------------|-------------|-----------|" | |
echo "| 7 | 8 | 9 | + |" | |
echo "| HE | FLASHBANG | SMOKE | |" |
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
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 |
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
# 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" |
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
// 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', |
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
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 && |
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
{ | |
"Setup StyleSheet React Native": { | |
"prefix": "rnss", | |
"body": [ | |
"import { StyleSheet } from 'react-native';", | |
"", | |
"const styles = StyleSheet.create({", | |
" container: {", | |
" flex: 1,", | |
" justifyContent: 'center',", |
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
{ | |
"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 = () => {", |
OlderNewer