diff --git a/btop/btop.conf b/btop/btop.conf index e6a9a30b..f8968c90 100644 --- a/btop/btop.conf +++ b/btop/btop.conf @@ -47,14 +47,14 @@ graph_symbol_net = "default" graph_symbol_proc = "default" #* Manually set which boxes to show. Available values are "cpu mem net proc", separate values with whitespace. -shown_boxes = "cpu mem net proc" +shown_boxes = "cpu mem proc net" #* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. update_ms = 1000 #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct", #* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly. -proc_sorting = "memory" +proc_sorting = "cpu direct" #* Reverse sorting order, True or False. proc_reversed = False diff --git a/vscodium/extensions/visualstudioexptteam.vscodeintellicode-1.2.20/cache/models.json b/vscodium/extensions/visualstudioexptteam.vscodeintellicode-1.2.20/cache/models.json index a8f91600..13965b97 100644 --- a/vscodium/extensions/visualstudioexptteam.vscodeintellicode-1.2.20/cache/models.json +++ b/vscodium/extensions/visualstudioexptteam.vscodeintellicode-1.2.20/cache/models.json @@ -1 +1 @@ -[{"analyzerName":"intellisense-members-lstm-pylance","languageName":"python","identity":{"modelId":"E61945A9A512ED5E1A3EE3F1A2365B88F8FE","outputId":"E4E9EADA96734F01970E616FAB2FAC19","modifiedTimeUtc":"2020-08-11T14:06:50.811Z"},"filePath":"/home/kristofers/.vscode/extensions/visualstudioexptteam.vscodeintellicode-1.2.20/cache/E61945A9A512ED5E1A3EE3F1A2365B88F8FE_E4E9EADA96734F01970E616FAB2FAC19","lastAccessTimeUtc":"2022-04-28T19:18:31.015Z"}] \ No newline at end of file +[{"analyzerName":"intellisense-members-lstm-pylance","languageName":"python","identity":{"modelId":"E61945A9A512ED5E1A3EE3F1A2365B88F8FE","outputId":"E4E9EADA96734F01970E616FAB2FAC19","modifiedTimeUtc":"2020-08-11T14:06:50.811Z"},"filePath":"/home/kristofers/.vscode/extensions/visualstudioexptteam.vscodeintellicode-1.2.20/cache/E61945A9A512ED5E1A3EE3F1A2365B88F8FE_E4E9EADA96734F01970E616FAB2FAC19","lastAccessTimeUtc":"2022-04-28T20:13:19.472Z"}] \ No newline at end of file diff --git a/vscodium/settings.json b/vscodium/settings.json index 029af419..abb0aedd 100644 --- a/vscodium/settings.json +++ b/vscodium/settings.json @@ -67,12 +67,51 @@ "workbench.iconTheme": "material-icon-theme", "json.schemas": [], "workbench.enableExperiments": false, - "workbench.colorTheme": "Sweet Dracula", "editor.fontFamily": "JetBrainsMono NF", "markdown.extension.print.theme": "dark", "editor.fontLigatures": true, "editor.formatOnSave": true, "code-runner.saveFileBeforeRun": true, "code-runner.saveAllFilesBeforeRun": true, - "task.saveBeforeRun": "prompt" + "task.saveBeforeRun": "prompt", + "tabnine.experimentalAutoImports": true, + "editor.tokenColorCustomizations": { + "textMateRules": [ + { + "name": "One Dark italic", + "scope": [ + "comment", + "entity.other.attribute-name", + "keyword", + "markup.underline.link", + "storage.modifier", + "storage.type", + "string.url", + "variable.language.super", + "variable.language.this" + ], + "settings": { + "fontStyle": "italic" + } + }, + { + "name": "One Dark italic reset", + "scope": [ + "keyword.operator", + "keyword.other.type", + "storage.modifier.import", + "storage.modifier.package", + "storage.type.built-in", + "storage.type.function.arrow", + "storage.type.generic", + "storage.type.java", + "storage.type.primitive" + ], + "settings": { + "fontStyle": "" + } + } + ] + }, + "workbench.colorTheme": "Sweet Dracula" } \ No newline at end of file