Skip to content

Instantly share code, notes, and snippets.

View MarcoBardalesRodriguez's full-sized avatar
🔥
Programming

Marco Bardales Rodriguez MarcoBardalesRodriguez

🔥
Programming
View GitHub Profile
@MarcoBardalesRodriguez
MarcoBardalesRodriguez / index.html
Created November 8, 2023 16:07
campos dinámicos con HTML y JS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
</head>
<body>
<form action="procesar.js" id="myForm:get">
"" Source your .vimrc
"source ~/.vimrc
let mapleader = " "
"" -- Suggested options --
" Show a few lines of context around the cursor. Note that this makes the
" text scroll if you mouse-click near the start or end of the window.
set scrolloff=5
@MarcoBardalesRodriguez
MarcoBardalesRodriguez / settings.json
Last active July 10, 2022 22:20
Settings for vim extension in VScode
{
"workbench.colorTheme": "Monokai",
"editor.cursorStyle": "line",
"editor.wordWrap": "on",
"editor.bracketPairColorization.enabled": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
@MarcoBardalesRodriguez
MarcoBardalesRodriguez / keybinding.json
Last active July 8, 2022 22:40
Settings for vim extension in vscode
[
// Next and Previus Editor
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"