Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
add vim plugin and set to disabled by default (#30)
Browse files Browse the repository at this point in the history
* flip vim plugin to disabled by default

* flip vim plugin to disabled by default
  • Loading branch information
usrbinkat authored Jan 10, 2024
1 parent 16933a6 commit 01adb25
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 25 deletions.
13 changes: 7 additions & 6 deletions containers/kind/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
// - https://containers.dev/implementors/features
// - https://code.visualstudio.com/docs/getstarted/settings
{
"name": "pulumi-devcontainer-kind",
"name": "pulumi-devcontainer",
"image": "ghcr.io/pulumi/devcontainer:latest",
"customizations": {
"vscode": {
"settings": {
// https://github.com/VSCodeVim/Vim
"vim.disableExtension": true,
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
Expand Down Expand Up @@ -48,8 +49,8 @@
},
"extensions": [
"golang.go",
"vscodevim.vim",
"github.copilot",
"vscodevim.vim",
"ms-python.python",
"redhat.vscode-yaml",
"esbenp.prettier-vscode",
Expand All @@ -67,18 +68,18 @@
"username": "vscode",
"userGid": "automatic",
"userUid": "automatic",
"upgradePackages": true,
"upgradePackages": false,
"nonFreePackages": true
},
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {
"moby": false,
"installDockerBuildx": true,
"dockerDashComposeVersion": "v2",
"version": "latest",
"dockerDashComposeVersion": "v2"
"moby": false
},
"ghcr.io/devcontainers-contrib/features/kind:1": {}
},
"postCreateCommand": "git submodule update --init --recursive",
"postCreateCommand": "git submodule update --init --recursive; direnv allow",
"remoteUser": "vscode",
"forwardPorts": [1313, 2222, 6000, 7681, 8080],
"runArgs": ["--network=host"]
Expand Down
39 changes: 20 additions & 19 deletions devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,25 @@
"vscode": {
"settings": {
// https://github.com/VSCodeVim/Vim
//"vim.easymotion": true,
//"vim.incsearch": true,
//"vim.useSystemClipboard": true,
//"vim.useCtrlKeys": true,
//"vim.hlsearch": true,
//"vim.insertModeKeyBindings": [
// {
// "before": ["j", "j"],
// "after": ["<Esc>"]
// }
//],
//"vim.handleKeys": {
// "<C-a>": false,
// "<C-f>": false
//},
//"extensions.experimental.affinity": {
// "vscodevim.vim": 1
//},
"vim.disableExtension": true,
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"extensions.experimental.affinity": {
"vscodevim.vim": 1
},
"go.testTags": "all",
"go.buildTags": "all",
"editor.minimap.enabled": false,
Expand All @@ -49,7 +50,7 @@
"extensions": [
"golang.go",
"github.copilot",
//"vscodevim.vim",
"vscodevim.vim",
"ms-python.python",
"redhat.vscode-yaml",
"esbenp.prettier-vscode",
Expand Down

0 comments on commit 01adb25

Please sign in to comment.