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
import base64 | |
import json | |
import os | |
import time | |
import hashlib | |
import requests | |
import webbrowser | |
import urllib.parse | |
# Define constants |
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
-- After installing wezterm, create the file in $HOME/.wezterm.lua -> Windows -> C:/Users/youruser/.wezterm.lua. Linux -> /home/youruser/.wezterm.lua | |
-- Info about config file https://wezfurlong.org/wezterm/config/files.html | |
local wezterm = require("wezterm") | |
return { | |
-- Default CLI and CWD | |
default_prog = {"C:\\Program Files\\Git\\bin\\bash.exe", "-l"}, | |
default_cwd = wezterm.home_dir .. "/Desktop/Proyectos", | |
-- Shortcuts | |
keys = { |
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
{ | |
// Rest of configuration | |
// INLINE HINTS | |
"javascript.inlayHints.parameterNames.enabled": "all", | |
"typescript.inlayHints.parameterNames.enabled": "all", | |
"javascript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": false, | |
"typescript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": false, | |
"editor.inlayHints.fontSize": 12, | |
// Theme Colors Override | |
"workbench.colorCustomizations": { |