From d719a41b4ba41da65692b5d3b2d458a37948d968 Mon Sep 17 00:00:00 2001
From: Odair M <odairmario45@gmail.com>
Date: Tue, 6 Dec 2022 15:51:36 -0300
Subject: [PATCH] feat(Conf): update conf

---
 source/conf.py | 20 ++++++++++++++++++--
 1 file changed, 18 insertions(+), 2 deletions(-)

diff --git a/source/conf.py b/source/conf.py
index 6662fa3..9e28783 100644
--- a/source/conf.py
+++ b/source/conf.py
@@ -13,7 +13,22 @@ author = "Odair M."
 # -- General configuration ---------------------------------------------------
 # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
 
-extensions = []
+extensions = [
+    "sphinx.ext.duration",
+    "sphinx.ext.doctest",
+    "sphinx.ext.autodoc",
+    "sphinx.ext.autosummary",
+    "sphinx.ext.intersphinx",
+]
+
+intersphinx_mapping = {
+    "python": ("https://docs.python.org/3/", None),
+    "sphinx": ("https://www.sphinx-doc.org/en/master/", None),
+}
+
+intersphinx_disabled_domains = ["std"]
+
+
 
 templates_path = ["_templates"]
 exclude_patterns = []
@@ -23,5 +38,6 @@ language = "pt"
 # -- Options for HTML output -------------------------------------------------
 # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
 
-html_theme = "alabaster"
+html_theme = "sphinx_rtd_theme"
 html_static_path = ["_static"]
+epub_show_urls = "footnote"
-- 
GitLab