-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
643 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
|
||
MIT License | ||
=========== | ||
# MIT License | ||
|
||
Copyright (c) 2022, Federico Jaureguialzo | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Welcome to dev-setup | ||
|
||
My own Ansible collection for development setup (use by your own risk). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../LICENSE.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
--- | ||
# Project information | ||
site_name: Development Setup | ||
site_url: https://fedejaure.github.io/dev-setup/ | ||
site_author: Federico Jaureguialzo | ||
site_description: >- | ||
My own Ansible collection for development setup. | ||
# Repository | ||
repo_name: fedejaure/dev-setup | ||
repo_url: https://github.com/fedejaure/dev-setup | ||
|
||
# Copyright | ||
copyright: "Copyright © 2020 - <script>document.write(new Date().getFullYear())</script> Federico Jaureguialzo" | ||
|
||
# Configuration | ||
theme: | ||
name: material | ||
# custom_dir: docs/overrides | ||
features: | ||
- announce.dismiss | ||
# - content.action.edit | ||
# - content.action.view | ||
- content.code.annotate | ||
- content.code.copy | ||
# - content.code.select | ||
# - content.footnote.tooltips | ||
# - content.tabs.link | ||
- content.tooltips | ||
# - header.autohide | ||
# - navigation.expand | ||
- navigation.footer | ||
- navigation.indexes | ||
# - navigation.instant | ||
# - navigation.instant.prefetch | ||
# - navigation.instant.progress | ||
# - navigation.prune | ||
- navigation.sections | ||
- navigation.tabs | ||
- navigation.tabs.sticky | ||
- navigation.top | ||
- navigation.tracking | ||
- search.highlight | ||
- search.share | ||
- search.suggest | ||
- toc.follow | ||
# - toc.integrate | ||
palette: | ||
- media: "(prefers-color-scheme)" | ||
toggle: | ||
icon: material/link | ||
name: Switch to light mode | ||
- media: "(prefers-color-scheme: light)" | ||
scheme: default | ||
primary: brown | ||
accent: brown | ||
toggle: | ||
icon: material/toggle-switch | ||
name: Switch to dark mode | ||
- media: "(prefers-color-scheme: dark)" | ||
scheme: slate | ||
primary: brown | ||
accent: black | ||
toggle: | ||
icon: material/toggle-switch-off | ||
name: Switch to system preference | ||
font: | ||
text: Roboto | ||
code: Roboto Mono | ||
icon: | ||
repo: fontawesome/brands/github-alt | ||
# logo: img/icon-white.svg | ||
# favicon: assets/favicon.png | ||
# icon: | ||
# logo: logo | ||
|
||
# Plugins | ||
plugins: | ||
- search: | ||
- minify: | ||
minify_html: true | ||
- termynal: | ||
prompt_literal_start: | ||
- "$" | ||
- "(.venv)$" | ||
- "(dev-setup)$" | ||
|
||
# Hooks | ||
# hooks: | ||
|
||
# Additional configuration | ||
extra: | ||
analytics: | ||
provider: google | ||
property: !ENV GOOGLE_ANALYTICS_KEY | ||
social: | ||
- icon: fontawesome/brands/github | ||
link: https://github.com/fedejaure | ||
|
||
# Extensions | ||
markdown_extensions: | ||
- abbr | ||
- admonition | ||
- attr_list | ||
- def_list | ||
- footnotes | ||
- md_in_html | ||
- toc: | ||
permalink: true | ||
- pymdownx.betterem: | ||
smart_enable: all | ||
- pymdownx.caret | ||
- pymdownx.details | ||
- pymdownx.highlight: | ||
anchor_linenums: true | ||
line_spans: __span | ||
pygments_lang_class: true | ||
- pymdownx.inlinehilite | ||
- pymdownx.mark | ||
- pymdownx.superfences: | ||
custom_fences: | ||
- name: mermaid | ||
class: mermaid | ||
format: !!python/name:pymdownx.superfences.fence_code_format | ||
- pymdownx.tilde | ||
|
||
|
||
# Page tree | ||
nav: | ||
- Home: index.md | ||
- Getting started: | ||
- Overview: readme.md | ||
- License: license.md | ||
- Changelog: changelog.md |
Oops, something went wrong.