-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.toml
More file actions
55 lines (51 loc) · 1.59 KB
/
config.example.toml
File metadata and controls
55 lines (51 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# nyne configuration
# Place at: ~/.config/nyne/config.toml
# Project-level overrides: .nyne/config.toml, .nyne.toml, or nyne.toml
# [mount]
# source_dir = "/path/to/project"
# mountpoint = "/path/to/mount"
#
# Paths to bypass virtual-content decoration, on top of the project's
# `.gitignore` chain (including nested `.gitignore` files,
# `.git/info/exclude`, and git's global ignore via `core.excludesFile`).
# Patterns use gitignore syntax. Matched paths pass straight through to
# the underlying filesystem with no companion `@` directories, no symbol
# parsing, and no LSP activity.
# excluded_patterns = ["target/", "dist/", "*.log"]
# [plugin.source]
# enabled = true
# max_depth = 5 # max nesting depth for symbol extraction (default: 5)
# [plugin.source.lsp]
# enabled = true
# cache_ttl = "5m"
# diagnostics_timeout = "2s"
# response_timeout = "10s"
#
# Override a built-in server (only specified fields are changed):
# [[plugin.source.lsp.servers]]
# name = "rust-analyzer"
# args = ["--log-file", "/tmp/ra.log"]
#
# Disable a built-in server:
# [[plugin.source.lsp.servers]]
# name = "basedpyright"
# enabled = false
#
# Add a new server:
# [[plugin.source.lsp.servers]]
# name = "gopls"
# command = "gopls"
# extensions = ["go"]
# language_ids = "go"
# root_markers = ["go.mod"]
# [plugin.source.analysis]
# enabled = true
#
# By default, all rules run except noisy ones (magic-string, magic-number).
# Rule IDs match the kebab-case names shown in HINTS.md output.
#
# Explicit empty = all rules including noisy ones:
# rules = []
#
# Specific allowlist:
# rules = ["deep-nesting", "empty-catch", "unwrap-chain"]