Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 874 Bytes

vscodium.md

File metadata and controls

44 lines (34 loc) · 874 Bytes

VSCodium Code Editor

Plugins:

  • canadaduane/notes
  • amvim
  • gitlens
  • prettier
  • svelte

Community:

Install:

wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg \
    | gpg --dearmor \
    | sudo dd of=/usr/share/keyrings/vscodium-archive-keyring.gpg

echo 'deb [ signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg ] https://download.vscodium.com/debs vscodium main' \
    | sudo tee /etc/apt/sources.list.d/vscodium.list

sudo apt update && sudo apt install codium

Keyboard Shortcuts

Enable VIM keys in File Explorer (workbench):

(settings.json)

{
  "workbench.list.automaticKeyboardNavigation": false
}

(keybindings.json)

{
  "key": "/",
  "command": "list.toggleKeyboardNavigation",
  "when": "explorerViewletFocus && explorerViewletVisible"
}