Skip to content

Commit

Permalink
🔧 Long-overdue update of VSCode settings.json
Browse files Browse the repository at this point in the history
I had moved VSCodium settings.json to settings.json.bak before making changes. However, the $HOME/.config settings file is only a soft link pointing to $HOME/.dotfiles/.config, so the new changes to VSCodium settings did not propogate to the tracked file at $HOME/.dotfiles/.config/VSCodium/User/settings.json
  • Loading branch information
ambertia committed Dec 14, 2024
1 parent 88ba5c4 commit 7ea3f09
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .config/VSCodium/User/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,15 @@
"vscode-neovim.neovimExecutablePaths.linux": "/usr/bin/nvim",

"window.zoomLevel": 1,
"workbench.colorTheme": "Aura Dark",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Catppuccin Macchiato",
"workbench.iconTheme": "catppuccin-macchiato",
"workbench.activityBar.location": "hidden",
"workbench.colorCustomizations": {
"editorSuggestWidget.selectedBackground": "#75307e",
"editorStickyScroll.background": "#57245e",
"sideBar.background": "#15141b",
"list.activeSelectionBackground": "#57245e",
},

"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.scrollbar.horizontal": "hidden",
"editor.scrollbar.vertical": "hidden",
Expand Down Expand Up @@ -55,5 +53,18 @@

"colorize.colorized_variables": [
"LESS"
]
],
"diffEditor.ignoreTrimWhitespace": false,
"editor.minimap.size": "fill",
"editor.minimap.showSlider": "always",
"editor.minimap.renderCharacters": false,

"files.readonlyInclude": {
"**/.cargo/registry/src/**/*.rs": true,
"**/lib/rustlib/src/rust/library/**/*.rs": true,
},
"catppuccin-icons.associations.extensions": {
"ui": "xml",
},
"indentRainbow.errorColor": "",
}

0 comments on commit 7ea3f09

Please sign in to comment.