Skip to content

Latest commit

History

History
60 lines (47 loc) 路 1.89 KB

README-fsharpVSCode.md

File metadata and controls

60 lines (47 loc) 路 1.89 KB

F# Settings on VSCode

If you are new to F# and using VSCode , Create a new Profile.

image

This project includes a .vscode/extensions.json file that prompts to install the following extensions.

image


Settings in the newly created profile can be as below:

image

image

setting.json

{
    "files.autoSave": "afterDelay",
    "files.autoSaveDelay": 500,
    "files.trimTrailingWhitespace": true,
    "workbench.startupEditor": "none",
    "workbench.colorTheme": "One Monokai",
    "workbench.colorCustomizations": {
        "terminal.background":"#002b36"
    },
    "terminal.integrated.fontFamily": "MesloLGS NF",
    "terminal.integrated.cursorBlinking": true,
    "terminal.integrated.cursorStyle": "line",
    "terminal.integrated.minimumContrastRatio": 1,
    "terminal.integrated.profiles.linux": {
        "zsh": {
            "path": "/usr/bin/zsh",
            "args": []
        }
    },
    "terminal.integrated.defaultProfile.linux": "zsh",
    "terminal.integrated.env.linux": {
            "$SHELL":"/usr/bin/zsh"
      },
    "editor.fontSize": 16,
    "editor.codeLensFontSize": 16,
    "editor.codeLensFontFamily":
    "'Droid Sans Mono', 'monospace', monospace",
 
 
    "FSharp.lineLens.enabled": "always",
    "FSharp.inlayHints.parameterNames": false,
    "FSharp.inlayHints.typeAnnotations": false,
    "FSharp.codeLenses.references.enabled": false,
    "FSharp.fsac.parallelReferenceResolution": true,
    "FSharp.showExplorerOnStartup": false,
    "FSharp.showProjectExplorerIn": "explorer"
 }