Skip to content

Features for Devcontainer like Neovim & Tmux

License

Notifications You must be signed in to change notification settings

boshold/devcontainer-features

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

devcontainer-features

Features for Devcontainer

[ 
    {
        "command": "workbench.action.createTerminalEditor",
        "key": "Ctrl+K T",
        "args": {
            "location": 2,
            "config": {
                "name": "Terminal",
                "executable": "tmux"
            }
        }
    },
    {
        "key": "Ctrl+K V",
        "command": "workbench.action.createTerminalEditor",
        "args": {
            "location": 2,
            "config": {
                "name": "Neovim",
                "executable": "nvim"
            }
        }
    }
]