Files
dotfiles/common/.config/marksman/config.toml
Pratik Tripathy 42d75df1f1 NeoVIM
- Formatting for: added yaml, configured markdown with new configuration
  file, prettierd configuration updates for bracketsSameLine
- Linting: added dockerfile, markdown
2024-03-17 17:31:37 +05:30

37 lines
1.3 KiB
TOML

[core]
markdown.file_extensions = ["md", "markdown"]
# Configures text sync protocol between the editor (LSP client)
# and Marksman (LSP server).
# Can be either 'full' or `incremental`:
# * full: the whole copy of a document is sent by the editor
# on every update,
# * incremental: only the changed parts are sent by
# the editor. This will result in less trafic between
# the editor and Marksman, but the overall performance
# impact is marginal.
# Defaults to `full` because the editors have bugs in incremental
# sync which result in slightly correpted state and are really hard
# to diagnose.
text_sync = "incremental"
# Use incremental resolution of project-wide references.
# This is much more efficient but is currently experimental
incremental_references = true
# For debugging only! Enables extra validation checks around
# incremental state updates. SIGNIFICANTLY IMPACTS PERFORMANCE
paranoid = false
[code_action]
# Enable/disable "Table of Contents" code action
toc.enable = true
# Enable/disable "Create missing linked file" code action
create_missing_file.enable = false
[completion]
# The style of wiki links completion.
# Other values include:
# * "file-stem" to complete using file name without an extension,
# * "file-path-stem" same as above but using file path.
wiki.style = "title-slug"