Skip to content

Commit

Permalink
Add file associations for "vimrc"
Browse files Browse the repository at this point in the history
The `vimrc` (1) of Vim (2) was not detected as Vim script syntax,
therefore a association has been added to map it to the `viml` syntax
type provided by the vscode-viml-syntax (3) extension that was added
in GH-184.

References:
  (1) http://vimdoc.sourceforge.net/htmldoc/starting.html#vimrc
  (2) https://www.vim.org
  (3) https://marketplace.visualstudio.com/items?itemName=dunstontc.viml

Resolves GH-191
  • Loading branch information
arcticicestudio committed Mar 22, 2019
1 parent b3b43e3 commit 330357d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions snowblocks/visual-studio-code/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@
"extensions.ignoreRecommendations": true,
"extensions.showRecommendationsOnlyOnDemand": true,
"files.associations": {
"Brewfile": "ruby",
"*.js": "javascript",
"*.jsx": "javascriptreact",
"*.js": "javascript"
"Brewfile": "ruby",
"vimrc": "viml"
},
"files.eol": "\n",
"files.insertFinalNewline": true,
Expand Down

0 comments on commit 330357d

Please sign in to comment.