This file contains 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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.fontSize": 14, | |
"editor.lineHeight": 1.8, | |
"javascript.suggest.autoImports": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.rulers": [80, 120], | |
"extensions.ignoreRecommendations": true, | |
"typescript.tsserver.log": "off", | |
"files.associations": { |
This file contains 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
### requires the script lf-pick on path | |
### Requires lf installed https://github.com/gokcehan/lf | |
### lf has the keybindings: <space> select file, lowercase `l` accept selection | |
### or use arrow right to open the file | |
### This allows selecting multiple files with space and then hit `l` to open | |
# touch ~/.local/bin/lf-pick | |
# chmod +x ~/.local/bin/lf-pick | |
# function lfp(){ | |
# local TEMP=$(mktemp) | |
# lf -selection-path=$TEMP |
This file contains 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
""" | |
Dumps each collection and repository scores to a local scores/ folder | |
""" | |
import json | |
import sys | |
from pathlib import Path | |
from statistics import mean | |
from typing import Dict, Optional, Union |
This file contains 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
[[language]] | |
name = "rust" | |
auto-format = false | |
[language-server.rust-analyzer] | |
command = "rust-analyzer" | |
[language-server.rust-analyzer.config] | |
inlayHints.bindingModeHints.enable = false | |
inlayHints.closingBraceHints.minLines = 10 |
This file contains 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
theme = "manutheme2" #catppuccin-frappe, but with edited statusbar bg color | |
[editor] | |
#line-number = "relative" | |
#cursorline = true |
This file contains 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
! model | |
pc101 Generic 101-key PC | |
pc102 Generic 102-key (Intl) PC | |
pc104 Generic 104-key PC | |
pc105 Generic 105-key (Intl) PC | |
dell101 Dell 101-key PC | |
latitude Dell Latitude series laptop | |
dellm65 Dell Precision M65 | |
everex Everex STEPnote | |
flexpro Keytronic FlexPro |
This file contains 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
"""E o pintinho piu.""" | |
class Bicho: | |
def __init__(self, nome, som): | |
self.nome = nome | |
self.som = som | |
self.sexo = nome[-1] == "a" and "a" or "o" | |
def sound(self, times=1): |
This file contains 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
from fastapi import Request, Depends, HTTPException, Response | |
from fastapi.responses import RedirectResponse | |
# This must be randomly generated | |
RANDON_SESSION_ID = "iskksioskassyidd" | |
# This must be a lookup on user database | |
USER_CORRECT = ("admin", "admin") | |
# This must be Redis, Memcached, SQLite, KV, etc... |
This file contains 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
{ | |
'AsyncGenerator': ['asend', 'athrow'], | |
'AsyncIterable': ['__aiter__'], | |
'AsyncIterator': ['__anext__'], | |
'Awaitable': ['__await__'], | |
'ByteString': ['__getitem__', '__len__'], | |
'Callable': ['__call__'], | |
'Collection': ['__contains__', '__iter__', '__len__'], | |
'Container': ['__contains__'], | |
'Coroutine': ['__await__', 'send', 'throw'], |
This file contains 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
{ | |
"echasnovski/mini.indentscope", | |
config = function() | |
vim.api.nvim_create_autocmd("FileType", { | |
pattern = { "help", "alpha", "dashboard", "neo-tree", "Trouble", "lazy", "mason" }, | |
callback = function() | |
vim.b.miniindentscope_disable = true | |
end, | |
}) | |
require("mini.indentscope").setup({ |