Skip to content

Instantly share code, notes, and snippets.

View neninja's full-sized avatar
๐Ÿ”ฅ
programando na forรงa do รณdio

Neni neninja

๐Ÿ”ฅ
programando na forรงa do รณdio
View GitHub Profile

Subir servidor

npm install http-server -g
http-server

Novo site

hugo new site [nome]

Novo post

hugo new [pasta]/[nome].md
# deploy
# script npm = "deploy": "sudo chmod +x deploy.sh && ./deploy.sh"
cp index.html dist/index.html
mkdir -p dist/src
cp -Rap src/assets dist/src
sed -i '/dist\// s//src\/assets\/js\//g' dist/index.html
cp dist/build.js dist/src/assets/js
cp dist/build.js.map dist/src/assets/js
@neninja
neninja / gist:ea39c6836cbe981b9c3b856a52dd8362
Created June 6, 2018 12:06 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: ๐Ÿ˜„ :smile: ๐Ÿ˜† :laughing:
๐Ÿ˜Š :blush: ๐Ÿ˜ƒ :smiley: โ˜บ๏ธ :relaxed:
๐Ÿ˜ :smirk: ๐Ÿ˜ :heart_eyes: ๐Ÿ˜˜ :kissing_heart:
๐Ÿ˜š :kissing_closed_eyes: ๐Ÿ˜ณ :flushed: ๐Ÿ˜Œ :relieved:
๐Ÿ˜† :satisfied: ๐Ÿ˜ :grin: ๐Ÿ˜‰ :wink:
๐Ÿ˜œ :stuck_out_tongue_winking_eye: ๐Ÿ˜ :stuck_out_tongue_closed_eyes: ๐Ÿ˜€ :grinning:
๐Ÿ˜— :kissing: ๐Ÿ˜™ :kissing_smiling_eyes: ๐Ÿ˜› :stuck_out_tongue:
@neninja
neninja / .vimrc
Created June 10, 2018 21:39 — forked from JeffreyWay/.vimrc
My .vimrc file
set nocompatible " Disable vi-compatibility
set t_Co=256
colorscheme xoria256
set guifont=menlo\ for\ powerline:h16
set guioptions-=T " Removes top toolbar
set guioptions-=r " Removes right hand scroll bar
set go-=L " Removes left hand scroll bar
set linespace=15
@neninja
neninja / .vimrc
Created October 10, 2018 15:06 — forked from maxboisvert/.vimrc
" Add this to your vimrc to get a minimalist autocomplete pop
" Or use as a plugin : https://github.com/maxboisvert/vim-simple-complete
" Minimalist-TabComplete-Plugin
inoremap <expr> <Tab> TabComplete()
fun! TabComplete()
if getline('.')[col('.') - 2] =~ '\K' || pumvisible()
return "\<C-P>"
else
@neninja
neninja / .vimrc
Created October 16, 2018 21:44
vimrc90
set rtp+=$GOPATH/src/golang.org/x/lint/misc/vim
" felipedax
" less plugin more diy
" motivacional: https://www.youtube.com/watch?v=XA2WjJbmmoM
"######################################################
"# Built in
"######################################################
" Map leader to ,
let mapleader=',' "<leader>"
@neninja
neninja / .vimrc
Created December 30, 2018 23:18
vimrc
" 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