Skip to content

Instantly share code, notes, and snippets.

@danielrotaermel
Last active February 21, 2023 17:44
Show Gist options
  • Save danielrotaermel/9371bde4575826fdec800fb2a17806d7 to your computer and use it in GitHub Desktop.
Save danielrotaermel/9371bde4575826fdec800fb2a17806d7 to your computer and use it in GitHub Desktop.

Ubuntu Setup

Kinto

Install gnome-tweak-tool to get keyboard lazout with umlauts.

sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install gnome-tweaks

enable: gnome-tweaks > keyboard and mouse > show extended input sources

Input Source English (United States) -> German (US, with german letters)

Fildem

VSCODE

keybindings.json

[
	 {
        "key": "ctrl+alt+down",
        "command": "editor.action.insertCursorBelow",
        "when": "editorTextFocus"
    },
    {
        "key": "shift+alt+down",
        "command": "-editor.action.insertCursorBelow",
        "when": "editorTextFocus"
    },
    {
        "key": "ctrl+alt+up",
        "command": "editor.action.insertCursorAbove",
        "when": "editorTextFocus"
    },
    {
        "key": "shift+alt+up",
        "command": "-editor.action.insertCursorAbove",
        "when": "editorTextFocus"
    },
    {
        "key": "shift+alt+up",
        "command": "editor.action.copyLinesUpAction",
        "when": "editorTextFocus && !editorReadonly"
    },
    {
        "key": "ctrl+shift+alt+up",
        "command": "-editor.action.copyLinesUpAction",
        "when": "editorTextFocus && !editorReadonly"
    },
    {
        "key": "shift+alt+down",
        "command": "editor.action.copyLinesDownAction",
        "when": "editorTextFocus && !editorReadonly"
    },
    {
        "key": "ctrl+shift+alt+down",
        "command": "-editor.action.copyLinesDownAction",
        "when": "editorTextFocus && !editorReadonly"
    },
    {
        "key": "ctrl+alt+b",
        "command": "workbench.action.toggleActivityBarVisibility"
     },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment