-
Notifications
You must be signed in to change notification settings - Fork 2
/
conf.py
49 lines (39 loc) · 1.38 KB
/
conf.py
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
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'pathlib.nvim'
copyright = '2023, pysan3'
author = 'pysan3'
release = '2.2.3' # x-release-please-version
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
'sphinxcontrib.luadomain',
'sphinx_lua',
'myst_parser',
]
templates_path = ['_templates']
source_suffix = ['.rst', '.md']
exclude_patterns = [
'_build',
'Thumbs.db',
'.DS_Store',
'lua_modules',
]
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'pydata_sphinx_theme'
html_theme_options = {
'navigation_with_keys': False,
}
# html_theme = 'press'
html_static_path = ['_static']
# Available options and default values
lua_source_path = ["./lua/pathlib"]
lua_source_encoding = 'utf8'
lua_source_comment_prefix = '---'
lua_source_use_emmy_lua_syntax = True
lua_source_private_prefix = '_'