Skip to content

Instantly share code, notes, and snippets.

View hickVieira's full-sized avatar
🥸

hickVieira hickVieira

🥸
View GitHub Profile
[style]
BASED_ON_STYLE = google
#ALIGN_CLOSING_BRACKET_WITH_VISUAL_INDENT = true
#ALLOW_MULTILINE_LAMBDAS = true
#ALLOW_MULTILINE_DICTIONARY_KEYS = true
#ALLOW_SPLIT_BEFORE_DEFAULT_OR_NAMED_ASSIGNS = true
#ALLOW_SPLIT_BEFORE_DICT_VALUE = true
ARITHMETIC_PRECEDENCE_INDICATION = true
#BLANK_LINES_AROUND_TOP_LEVEL_DEFINITION = true
#BLANK_LINE_BEFORE_CLASS_DOCSTRING = true
@hickVieira
hickVieira / vscode settings.json
Last active October 8, 2024 14:23
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,
"explorer.compactFolders": false,
"git.confirmSync": false,
"git.suggestSmartCommit": false,
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
--
#!/bin/bash
echo "Running startup.sh"
# Wait 5 seconds
sleep 5
# Keycodes:
# KP_HOME 110
# KP_END 115
@hickVieira
hickVieira / vscode keybinds.json
Last active July 28, 2024 15:49
Allows you to toggle stupid codelens and inlays on off with shift alt d using the "Toggle" plugin
// Place your key bindings in this file to override the defaults
[
{
"key": "shift+alt+d",
"command": "toggle",
"when": "editorTextFocus",
"args": {
"id": "codeLens",
"value": [
{