Skip to content

Instantly share code, notes, and snippets.

View hickVieira's full-sized avatar
🥸

hickVieira hickVieira

🥸
View GitHub Profile
@hickVieira
hickVieira / VSCode "Toggle" plugin keybinds.json
Last active April 29, 2024 16:08
Allows you to toggle stupid codelens and inlays on off with shift alt d using the "Toggle" plugin
[
{
"key": "shift+alt+d",
"command": "toggle",
"when": "editorTextFocus",
"args": {
"id": "codeLens",
"value": [
{
"editor.codeLens": true,
#!/bin/bash
echo "Running startup.sh"
# Wait 5 seconds
sleep 5
# Keycodes:
# KP_HOME 110
# KP_END 115
conky.config = {
-- conky configuration
--
-- The list of variables has been removed from this file in favour
-- of keeping the documentation more maintainable.
-- Check http://conky.sf.net for an up-to-date-list.
--
-- For ideas about how to modify conky, please see:
-- http://conky.sourceforge.net/variables.html
--
"python.formatting.autopep8Args": [
"--max-line-length = 512"
],
"python.formatting.provider": "yapf",
"python.formatting.yapfArgs": [
"--style={based_on_style: google, indent_width: 4, column_limit: 512}"
],
@hickVieira
hickVieira / vscode settings.json
Last active June 22, 2024 14:48
custom vscode settings json file with custom theme colors
{
"workbench.colorTheme": "Default Dark+",
"editor.codeLens": false,
"rust-analyzer.lens.enable": false,
"editor.inlayHints.enabled": "off",
"files.autoSave": "afterDelay",
"dotnetAcquisitionExtension.enableTelemetry": false,
"telemetry.telemetryLevel": "off",
"explorer.compactFolders": false,
"editor.minimap.enabled": false,