Skip to content

Instantly share code, notes, and snippets.

View manueldevjour's full-sized avatar
:shipit:

Manuel Cerezo manueldevjour

:shipit:
View GitHub Profile
{
"window.zoomLevel": 1,
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.fontWeight": "700",
"editor.cursorStyle": "line-thin",
"editor.cursorWidth": 5,
"editor.cursorBlinking": "smooth",
"workbench.statusBar.visible": true,
"editor.scrollbar.verticalScrollbarSize": 7,
[
{
"key": "cmd+enter",
"command": "runCommands",
"args": {
"commands": [
{
"command": "git.stageAll"
},
{
theme = catppuccin-frappe
font-size = 18
font-family = PT Mono
cursor-style = bar
@manueldevjour
manueldevjour / obsidian-web-clipper.js
Last active May 20, 2024 10:33 — forked from kepano/obsidian-web-clipper.js
Obsidian Web Clipper Bookmarklet to save articles and pages from the web (for Safari, Chrome, Firefox, and mobile browsers)
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{
default: Turndown
}, {
default: Readability
}]) => {
/* Optional vault name */
const vault = "";
/* Optional folder name such as "Clippings/" */
@manueldevjour
manueldevjour / .eslintrc.js
Created March 20, 2023 11:13
WIP: Temporal use of lintr because of a mixing of different projects
module.exports = {
extends: ['next', 'prettier'],
env: {
browser: true,
es6: true,
node: true
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 6,
@manueldevjour
manueldevjour / .prettierrc.js
Last active March 19, 2023 23:21
Own Prettierrc file I use
module.exports = {
trailingComma: 'none',
tabWidth: 2,
semi: true,
singleQuote: true,
printWidth: 120,
bracketSpacing: true
};