vim -c "silent Ns https://gist.githubusercontent.com/nenitf/2cfb1574a465a1355ccc2c02f93a73ab/raw/237373a5ac0036502b93c77920e92d7937d5ed47/online-vimrc.vim" a.js
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
set nocompatible " evita erro de E10: \ should be followed by /, ? or & | |
let g:dotfilesDir = $HOME . "/dev/dotfiles/" | |
let g:dotfiles = [ | |
\ { | |
\ "input": "zathura/zathurarc", | |
\ "output": $HOME . "/.config/zathura" | |
\ }, | |
\ { | |
\ "input": "bash/.bash_profile", |
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
digraph hierarchy { | |
rankdir=TB; // direção de baixo para o topo | |
node[shape=record,style=filled,fillcolor=gray95]; | |
edge[arrowhead=none,style="invis"] | |
// 🌟 ❤️ 🔥 ⚡️ 🔒 ⚙️ | |
l1[label = < | |
{ | |
normal mode | |
| |
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
// https://www.graphviz.org/doc/info/colors.html | |
// http://larsbarkman.com/2015/08/26/alignmentmaps-with-graphviz/ | |
// https://stackoverflow.com/questions/33025639/how-to-align-subgraphs-in-dot-files | |
// https://stackoverflow.com/questions/7777722/top-down-subgraphs-left-right-inside-subgraphs | |
digraph AlignmentMap { | |
// General layout for the graph | |
rankdir=LR; // Direction of the graph Left to Right | |
node [style="rounded,filled",color=black,shape=box,fillcolor=white]; // Defines the default layout of the nodes |
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
// Créditos da tradução: https://gist.github.com/natanfelles/3467aea2251574b2e60d95bef30ea10c | |
$.fn.form.settings.prompt.empty = '{name} deve ter um valor', | |
$.fn.form.settings.prompt.checked = '{name} deve ser marcado', | |
$.fn.form.settings.prompt.email = '{name} deve ser um valid e-mail', | |
$.fn.form.settings.prompt.url = '{name} deve ser uma url válida', | |
$.fn.form.settings.prompt.regExp = '{name} não está formatado corretamente', | |
$.fn.form.settings.prompt.integer = '{name} deve ser um número inteiro', | |
$.fn.form.settings.prompt.decimal = '{name} deve ser um número decimal', | |
$.fn.form.settings.prompt.number = '{name} deve ser definido como um número', |
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
{ | |
"contatos": [ | |
{ | |
"nome": "Email", | |
"url": "mailto:[email protected]" | |
}, | |
{ | |
"nome": "Linkedin", | |
"url": "http://linkedin.com/in/nenitf" | |
}, |
Como configurar SSH no github.
# Instalar gerador de ssh
sudo apt install openssh-client
# Gerar chave
ssh-keygen -t rsa -C "[email protected]"
# Pode dar enter em todas opções
# Ver chave pública e colocar no github
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
[ | |
"https://www.youtube.com/embed/YhHAwmZgcjE", | |
"https://www.youtube.com/embed/YhHAwmZgcjE", | |
"https://www.youtube.com/embed/YhHAwmZgcjE" | |
] |
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
[ | |
{ | |
"categoria": "Infantil", | |
"subcategoria": "Festa", | |
"url": "https://raw.githubusercontent.com/RafaelMoreiraFT/fotos/master/Infantil/Festa/infantilfesta00.jpg" | |
}, | |
{ | |
"categoria": "Infantil", | |
"subcategoria": "Festa", | |
"url": "https://raw.githubusercontent.com/RafaelMoreiraFT/fotos/master/Infantil/Festa/infantilfesta01.jpg" |
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
" autor: felipedacs | |
" A partir de vim-bootstrap b0a75e4 | |
" motivacional: https://www.youtube.com/watch?v=XA2WjJbmmoM | |
"***************************************************************************** | |
"" Vim-PLug core | |
"***************************************************************************** | |
if has('vim_starting') | |
set nocompatible " Be iMproved | |
endif |