Shown below are the resulting file trees for each config file located in this folder. ### TODO dotfiles exa?! ### c from [c.sane](configs/c.sane), based on personal taste ```bash ├── .git/ ├── .gitignore ├── docs/ ├── LICENSE ├── Makefile ├── README.md ├── src/ │ └── main.c └── tests/ └── test.c ``` ### cpp from [cpp.sane](configs/cpp.sane), based on personal taste ```bash . ├── .git/ ├── .gitignore ├── build/ ├── CMakeLists.txt ├── docs/ ├── include/ │ └── ├── README.md ├── scripts/ ├── src/ │ └── a_project.cpp └── tests/ └── test.cpp ``` ### python from [python.sane](configs/python.sane), based on [this](https://docs.python-guide.org/writing/structure/#sample-repository) ```bash . ├── .git/ ├── .gitignore ├── docs │ ├── conf.py │ └── index.rst ├── README.md ├── requirements.txt ├── sample/ │ ├── __init__.py │ ├── core.py │ └── helpers.py ├── setup.py └── tests/ ├── test_advanced.py └── test_basic.py ``` ### go from [go.sane](configs/go.sane), based on [golang standards](https://github.com/golang-standards/project-layout) ```bash ├── .git/ ├── .gitignore ├── cmd/ │ └── │ └── main.go ├── docs/ ├── internal/ │ ├── app/ │ └── pkg/ ├── LICENSE ├── pkg/ ├── README.md └── test/ ```