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
for file in *.png ; do cwebp -q 50 "$file" -o "${file%.png}.webp"; done |
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
"***************************************************************************** | |
"" Vim-PLug core | |
"***************************************************************************** | |
if has('vim_starting') | |
set nocompatible " Be iMproved | |
endif | |
let vimplug_exists=expand('~/.config/nvim/autoload/plug.vim') | |
let g:vim_bootstrap_langs = "javascript,php,python,ruby" |
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
"" Author: @jeancabral - https://twitter.com/jeancabral | |
"" init vim-plug | |
call plug#begin('~/.vim/plugged') | |
" | |
"" plugin section | |
" | |
" javascript support | |
Plug 'pangloss/vim-javascript' | |
" typescipt supoort | |
Plug 'leafgarland/typescript-vim' |
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
/** | |
* GatsbyJS: Configurando Eslint e Prettier no Visual Studio Code | |
* https://dev.to/jeancabral/gatsbyjs-configurando-eslint-e-prettier-no-visual-studio-code-5ab8 | |
*/ | |
module.exports = { | |
env: { | |
browser: true, | |
es6: true, | |
}, |