Skip to content

Commit

Permalink
VSCode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
kip93 committed Apr 29, 2022
1 parent d634659 commit 406b5e2
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ // Suggested extensions
"recommendations": [
// General
"medo64.render-crlf",
"tumido.cron-explained",

// Git
"cschleiden.vscode-github-actions",
"eamodio.gitlens",

// Markdown
"robole.marky-stats",
"valentjn.vscode-ltex",

// Nix
"bbenoist.Nix",
"jnoortheen.nix-ide",

// YAML
"redhat.vscode-yaml",
]
}
33 changes: 33 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"code-eol.highlightExtraWhitespace": true,
"code-eol.highlightNonDefault": true,
"cron-explained.codeLens.enabled": true,
"diffEditor.ignoreTrimWhitespace": false,
"editor.insertSpaces": true,
"files.associations": {
"*.c": "c",
"*.cpp": "cpp",
"*.h": "c",
"*.hpp": "cpp",
"*.inc": "c",
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"json.maxItemsComputed": 999999,
"ltex.additionalRules.enablePickyRules": true,
"ltex.additionalRules.motherTongue": "en-GB",
"ltex.completionEnabled": true,
"ltex.enabled": [
"markdown",
],
"ltex.language": "en-GB",
"ltex.statusBarItem": true,
"markyMarkdown.statsAlignment": "Right",
"markyMarkdown.statsItemSeparator": " ",
"markyMarkdown.statsShowReadingTime": true,
"markyMarkdown.statsShowCharacters": true,
"markyMarkdown.statsShowLines": true,
"markyMarkdown.statsShowWords": true,
"markyMarkdown.statsWordsPerMinute": 150,
}

0 comments on commit 406b5e2

Please sign in to comment.