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
[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 |
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.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, |
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
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 | |
-- |
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
#!/bin/bash | |
echo "Running startup.sh" | |
# Wait 5 seconds | |
sleep 5 | |
# Keycodes: | |
# KP_HOME 110 | |
# KP_END 115 |
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
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "shift+alt+d", | |
"command": "toggle", | |
"when": "editorTextFocus", | |
"args": { | |
"id": "codeLens", | |
"value": [ | |
{ |