Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VsCode config #9

Open
OhMyMndy opened this issue Oct 19, 2022 · 0 comments
Open

VsCode config #9

OhMyMndy opened this issue Oct 19, 2022 · 0 comments

Comments

@OhMyMndy
Copy link
Owner

OhMyMndy commented Oct 19, 2022

{
  "terminal.integrated.minimumContrastRatio": 7,
  "workbench.tree.indent": 16,
  "workbench.iconTheme": "material-icon-theme",
  "[yaml]": {
    "editor.defaultFormatter": "redhat.vscode-yaml"
  },
  "diffEditor.ignoreTrimWhitespace": false,
  "editor.fontFamily": "'JetbrainsMono NF', Consolas, 'Courier New', monospace",
  "remote.SSH.remotePlatform": {
  },
  "[markdown]": {
    "editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
  },
  "editor.inlineSuggest.enabled": true,
  "[jsonc]": {
    "editor.defaultFormatter": "vscode.json-language-features"
  },
  "editor.minimap.enabled": false,
      "vim.normalModeKeyBindingsNonRecursive": [
        {
            "before": [
                "<tab>"
            ],
            "commands": [
                "workbench.action.nextEditor"
            ]
        },
        {
            "before": [
                "<shift+tab>"
            ],
            "commands": [
                "workbench.action.previousEditor"
            ]
        },
        {
            "before": [
                "<leader>",
                "f",
                "f"
            ],
            "commands": [
                "workbench.action.quickOpen"
            ],
            "silent": true
        },
        {
            "before": [
                "<leader>",
                "f",
                "m"
            ],
            "commands": [
                "editor.action.formatDocument"
            ],
            "silent": true
        },
        {
            "before": [
                "<leader>",
                "t",
                "w"
            ],
            "commands": [
                "workbench.action.terminal.toggleTerminal"
            ],
            "silent": true
        },
        {
            "before": [
                "g",
                "d"
            ],
            "commands": [
                "editor.action.goToTypeDefinition"
            ]
        },
        {
            "before": [
                "<leader>",
                "s"
            ],
            // @see https://gist.github.com/skfarhat/4e88ef386c93b9dceb98121d9457edbf
            // workbench.action.files.saveAll
            "commands": [
                "saveAll"
            ]
        }
    ],
    "vim.visualModeKeyBindingsNonRecursive": [
        {
            "before": [
                ">"
            ],
            "commands": [
                "editor.action.indentLines"
            ]
        },
        {
            "before": [
                "<"
            ],
            "commands": [
                "editor.action.outdentLines"
            ]
        }
    ],
    "vim.leader": "<space>",
    "vim.useCtrlKeys": true,
    "vim.handleKeys": {
        "<C-n>": false,
        "<C-a>": false,
        "<C-f>": false
    },
    "vim.statusBarColorControl": true,
    "vim.statusBarColors.normal": [
        "#0b918f",
        "#ffffff"
    ],
    "vim.statusBarColors.insert": [
        "#830410",
        "#ffffff"
    ],
    "vim.statusBarColors.visual": [
        "#e75100",
        "#ffffff"
    ],
    "vim.statusBarColors.visualline": [
        "#B48EAD",
        "#000"
    ],
    "vim.statusBarColors.visualblock": [
        "#A3BE8C",
        "#000"
    ],
    "vim.statusBarColors.replace": "#D08770",
    "vim.statusBarColors.commandlineinprogress": [
        "#007ACC",
        "#ffffff"
    ],
    "vim.statusBarColors.searchinprogressmode": [
        "#007ACC",
        "#ffffff"
    ],
    "vim.statusBarColors.easymotionmode": [
        "#007ACC",
        "#ffffff"
    ],
    "vim.statusBarColors.easymotioninputmode": [
        "#007ACC",
        "#ffffff"
    ],
    "vim.statusBarColors.surroundinputmode": [
        "#007ACC",
        "#ffffff"
    ],
  "workbench.colorCustomizations": {
    "statusBar.background": "#B48EAD",
    "statusBar.noFolderBackground": "#B48EAD",
    "statusBar.debuggingBackground": "#B48EAD",
    "statusBar.foreground": "#000",
    "statusBar.debuggingForeground": "#000"
  },
  // "workbench.list.defaultFindMode": "highlight",
  // "workbench.list.keyboardNavigation": "filter"
  "nerdtree.hideSidebarWhenOpenFile": true,
  "nerdtree.alwaysShowSidebar": false,
  "editor.stickyScroll.enabled": true,
  "[html]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "html.autoClosingTags": false,
  "workbench.colorTheme": "Moonlight Italic",
  "editor.acceptSuggestionOnCommitCharacter": false,
  "editor.suggestOnTriggerCharacters": false,
  // Controls if quick suggestions should show up while typing
  "editor.quickSuggestions": {
    "other": false,
    "comments": false,
    "strings": false
  },

  // Controls if suggestions should be accepted with "Enter" - in addition to "Tab". Helps to avoid ambiguity between inserting new lines and accepting suggestions.
  "editor.acceptSuggestionOnEnter": "on",

  // Controls the delay in ms after which quick suggestions will show up.
  "editor.quickSuggestionsDelay": 10,

  // Enable word based suggestions
  "editor.wordBasedSuggestions": false,
  "vim.smartRelativeLine": true,
  "excalidraw.theme": "light",
  "remote.SSH.defaultExtensions": [
  ],
  "gitpod.remote.useLocalApp": false,
  "redhat.telemetry.enabled": true,
  "terminal.integrated.localEchoLatencyThreshold": -1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant