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
# 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/guilhermerodz/.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 |
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
" 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 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
// This configuration file allows you to pass permanent command line arguments to VS Code. | |
// Only a subset of arguments is currently supported to reduce the likelyhood of breaking | |
// the installation. | |
// | |
// PLEASE DO NOT CHANGE WITHOUT UNDERSTANDING THE IMPACT | |
// | |
// NOTE: Changing this file requires a restart of VS Code. | |
{ | |
// Use software rendering instead of hardware accelerated rendering. | |
// This can help in cases where you see rendering issues in VS Code. |
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
# ~/.local/share/konsole/Omni.colorscheme | |
[Background] | |
Color=25,22,34 | |
[BackgroundFaint] | |
Color=77,77,77 | |
[BackgroundIntense] | |
Color=25,22,34 |
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
{ | |
"suggest.noselect": false, | |
"coc.preferences.formatOnSaveFiletypes": [ | |
"javascript", | |
"typescript", | |
"typescriptreact", | |
"json", | |
"javascriptreact", | |
"typescript.tsx", | |
"graphql" |
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
syncTimeouts(() => { | |
if (input.matches(':autofill')) { | |
console.log('input has autofilled') | |
input.style.opacity = '0 !important' | |
} else { | |
console.log('input is no longer autofilled') | |
input.style.opacity = '1' | |
} | |
}) | |
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 client' | |
import * as React from 'react' | |
import { cn } from '@/lib/cn' | |
import Image from 'next/image' | |
export default function Home() { | |
const mirrorRef = React.useRef<HTMLDivElement>(null) | |
const mainRef = React.useRef<HTMLDivElement>(null) |