Skip to content

Commit

Permalink
Raise TOML support to workspace level, add haskell formatter config
Browse files Browse the repository at this point in the history
  • Loading branch information
iburakov committed Aug 26, 2023
1 parent fdfb994 commit 6deff5e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .vscode/nitta.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@
"testing.gutterEnabled": false,

// setting $LANG to "en_US.UTF-8" or something causes problems with some programs
"terminal.integrated.detectLocale": "off"
"terminal.integrated.detectLocale": "off",

"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml"
}
},
"extensions": {
"recommendations": [
Expand All @@ -52,7 +56,9 @@
// a simple extension to have a separate TODO/FIXME comments list at hand
"Gruntfuggly.todo-tree",
// a more feature-rich git integration (blame, commit history, etc.)
"eamodio.gitlens"
"eamodio.gitlens",
// TOML editing (syntax highlighting, formatting, etc.)
"tamasfe.even-better-toml"
]
}
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"ml": true,
"web": true
},
"[haskell]": {
"editor.defaultFormatter": "haskell.haskell"
},
"haskell.manageHLS": "GHCup",
"haskell.formattingProvider": "fourmolu",
"haskell.plugin.rename.config.crossModule": true
Expand Down

0 comments on commit 6deff5e

Please sign in to comment.