Skip to content

Instantly share code, notes, and snippets.

// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+shift+down",
"command": "-editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+up",
"command": "-editor.action.insertCursorAbove",
@zevolution
zevolution / vscode-settings.json
Last active August 6, 2021 01:37
VSCode Settings
{
"editor.fontSize": 14,
//"editor.lineHeight":24,
"editor.fontFamily":"Fira Code",
"editor.fontLigatures":true,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
"editor.rulers": [
80,
120
@zevolution
zevolution / keyboards-markup.md
Created June 28, 2020 19:10
Keyboard markup format to insert in your README.md

Ctrl + Alt + F3

@zevolution
zevolution / simple-register-api-insomnia.json
Last active February 18, 2021 18:49
This is an insomnia file to use simple-register API
{
"_type":"export",
"__export_format":4,
"__export_date":"2020-06-02T22:24:28.305Z",
"__export_source":"insomnia.desktop.app:v7.1.1",
"resources":[
{
"_id":"req_9c06effecf1a4a85b2f8be3b0fc45ace",
"authentication":{
@zevolution
zevolution / .hyper.js
Last active September 23, 2020 02:36
// 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: {
hyperTabsMove: {
moveLeft: 'ctrl+shift+pagedown',
moveRight: 'ctrl+shift+pageup'
},
@zevolution
zevolution / .zshrc
Last active December 28, 2020 13:06
# 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/SEU-USUARIO/.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
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
" Must come first because it changes other options
set nocompatible
" [vim-plug] Load plugins
call plug#begin()
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'junegunn/vim-easy-align'
Plug 'pangloss/vim-javascript'
Plug 'mxw/vim-jsx'
Plug 'tpope/vim-bundler'
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = José Lucas
email =
[merge]
tool = bcompare
[mergetool "bcompare"]
trustExitCode = true
[diff]