add vscode settings

This commit is contained in:
Bryson Steck 2023-04-12 10:02:14 -06:00
parent 2d1191a092
commit 3991ac66a5
4 changed files with 72 additions and 1 deletions

View file

@ -11,6 +11,7 @@ alias sudo="doas"
# typos
alias l='ls'
alias sl='ls'
alias balls='sudo $(fc -ln -1)'
# always run with args
alias grep='grep --color=auto'

View file

@ -15,6 +15,7 @@ cp ~/.Xresources ./x
cp ~/.Xmodmap ./x
cp ~/bin/battery.pl ./x
cp ~/bin/startdwm.sh ./x
cp ~/.config/VSCodium/User/settings.json ./vscode
# other config files
cp ~/.config/dunst/dunstrc ./dunst

69
vscode/settings.json Normal file
View file

@ -0,0 +1,69 @@
{
"editor.inlineSuggest.enabled": true,
"window.menuBarVisibility": "toggle",
"telemetry.telemetryLevel": "off",
"telemetry.enableTelemetry": false,
"java.import.gradle.enabled": true,
"workbench.colorCustomizations": {
"statusBarItem.remoteBackground": "#79740e",
"statusBar.debuggingBackground": "#d65d0e",
},
"editor.fontFamily": "'JetBrains Mono'",
"java.configuration.runtimes": [
{
"name": "JavaSE-1.8",
"path": "/usr/local/java/jdk-8",
"default": true
}
],
"terminal.integrated.commandsToSkipShell": [
"language-julia.interrupt"
],
"security.workspace.trust.untrustedFiles": "open",
"workbench.settings.enableNaturalLanguageSearch": false,
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": "onlyEnabledExtensions",
"typescript.disableAutomaticTypeAcquisition": true,
"workbench.colorTheme": "Gruvbox Dark Medium",
"editor.cursorBlinking": "solid",
"editor.tabSize": 2,
"keyboard.dispatch": "keyCode",
"vim.vimrc.enable": true,
"vim.vimrc.path": "~/.vimrc",
"vim.leader": "<space>",
"debug.inlineValues": "on",
"debug.console.collapseIdenticalLines": false,
"glassit.alpha": 225,
"editor.minimap.enabled": false,
"vim.easymotionDimBackground": false,
"vim.hlsearch": true,
"workbench.startupEditor": "none",
"workbench.sideBar.location": "right",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "h"],
"commands": [
"workbench.action.navigateLeft"
]
},
{
"before": ["<leader>", "j"],
"commands": [
"workbench.action.navigateDown"
]
},
{
"before": ["<leader>", "k"],
"commands": [
"workbench.action.navigateUp"
]
},
{
"before": ["<leader>", "l"],
"commands": [
"workbench.action.navigateRight"
]
}
]
}

View file

@ -56,7 +56,7 @@ pacmd set-default-sink alsa_output.pci-0000_03_00.6.HiFi__hw_Generic_1__sink &
pacmd set-sink-volume alsa_output.pci-0000_03_00.6.HiFi__hw_Generic_1__sink 0 &
# set up wallpaper
feh --bg-fill ~/git/wallpapers-exorcist/gruvbox/books.jpg
feh --bg-fill ~/git/wallpapers-exorcist/gruvbox/mountains-2.jpg
# apply Xresources
xrdb -merge ~/.Xresources