Skip to content

Instantly share code, notes, and snippets.

View hickVieira's full-sized avatar
👿

hickVieira hickVieira

👿
View GitHub Profile
"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}"
],
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 "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,