added vscodium extensions and settings
This commit is contained in:
parent
320b89c456
commit
f697059e1c
2 changed files with 40 additions and 1 deletions
16
home/pomp/.config/VSCodium/User/settings.json
Normal file
16
home/pomp/.config/VSCodium/User/settings.json
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"workbench.colorTheme": "One Dark Pro Flat",
|
||||||
|
"workbench.iconTheme": "material-icon-theme",
|
||||||
|
"security.workspace.trust.untrustedFiles": "open",
|
||||||
|
"git.enableSmartCommit": true,
|
||||||
|
"git.confirmSync": false,
|
||||||
|
"git.autofetch": true,
|
||||||
|
"terminal.integrated.fontFamily": "'NotoSansMono Nerd Font'",
|
||||||
|
"editor.codeLensFontFamily": "'Source Code Pro'",
|
||||||
|
"editor.formatOnSave": true,
|
||||||
|
"editor.formatOnPaste": true,
|
||||||
|
"gitlens.currentLine.enabled": false,
|
||||||
|
"gitlens.hovers.currentLine.over": "line",
|
||||||
|
"gitlens.codeLens.enabled": false,
|
||||||
|
"gitlens.statusBar.enabled": false
|
||||||
|
}
|
25
setup.sh
25
setup.sh
|
@ -696,7 +696,30 @@ setup_vscodium() {
|
||||||
|
|
||||||
package_install vscodium-bin
|
package_install vscodium-bin
|
||||||
|
|
||||||
# todo: settings and extension
|
extensions=(
|
||||||
|
aaron-bond.better-comments
|
||||||
|
dbaeumer.vscode-eslint
|
||||||
|
dsznajder.es7-react-js-snippets
|
||||||
|
eamodio.gitlens
|
||||||
|
earshinov.sort-lines-by-selection
|
||||||
|
EditorConfig.EditorConfig
|
||||||
|
esbenp.prettier-vscode
|
||||||
|
foxundermoon.shell-format
|
||||||
|
golang.go
|
||||||
|
jpoissonnier.vscode-styled-components
|
||||||
|
ms-python.python
|
||||||
|
ms-toolsai.jupyter
|
||||||
|
PKief.material-icon-theme
|
||||||
|
redwan-hossain.auto-rename-tag-clone
|
||||||
|
streetsidesoftware.code-spell-checker
|
||||||
|
zhuangtongfa.material-theme
|
||||||
|
)
|
||||||
|
|
||||||
|
for extension in "${extensions[@]}"; do
|
||||||
|
codium --install-extension $extension
|
||||||
|
done
|
||||||
|
|
||||||
|
install ./home/pomp/.config/VSCodium/User/settings.json ~/.config/VSCodium/User/settings.json
|
||||||
}
|
}
|
||||||
|
|
||||||
setup_wine() {
|
setup_wine() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue