npm install http-server -g
http-server
https://woliveiras.com.br/vimparanoobs/
https://www.youtube.com/watch?v=kZDT10nFiTY&t=1674s
:q / quit
:q! / force quit
:w / write
:w <name> / save as
https://woliveiras.com.br/vimparanoobs/
https://www.youtube.com/watch?v=UUzW46SeLhg&t=1868s
vim
https://gist.github.com/felipedacs/78a0ad7dc57f216dacc92e9b95cc9b7e
-
:i / insert on cursor
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
# 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 |
People
![]() :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: |
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 " 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 |
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
" 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 |
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 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>" |
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 |
OlderNewer