https://github.com/practicalli/neovim
Guides to using Neovim, Conjure, LSP and Portal for Clojure REPL driven development. Aldo covers general dev tools including Neogit
https://github.com/practicalli/neovim
clojure clojure-lsp conjure fennel neovim
Last synced: 4 months ago
JSON representation
Guides to using Neovim, Conjure, LSP and Portal for Clojure REPL driven development. Aldo covers general dev tools including Neogit
- Host: GitHub
- URL: https://github.com/practicalli/neovim
- Owner: practicalli
- License: cc-by-sa-4.0
- Created: 2020-10-09T12:20:33.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-06-09T21:57:33.000Z (4 months ago)
- Last Synced: 2025-06-09T22:32:17.584Z (4 months ago)
- Topics: clojure, clojure-lsp, conjure, fennel, neovim
- Language: Makefile
- Homepage: https://practical.li/neovim/
- Size: 11 MB
- Stars: 24
- Watchers: 2
- Forks: 4
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Practicalli Neovim
```none
██████╗ ██████╗ █████╗ ██████╗████████╗██╗ ██████╗ █████╗ ██╗ ██╗ ██╗
██╔══██╗██╔══██╗██╔══██╗██╔════╝╚══██╔══╝██║██╔════╝██╔══██╗██║ ██║ ██║
██████╔╝██████╔╝███████║██║ ██║ ██║██║ ███████║██║ ██║ ██║
██╔═══╝ ██╔══██╗██╔══██║██║ ██║ ██║██║ ██╔══██║██║ ██║ ██║
██║ ██║ ██║██║ ██║╚██████╗ ██║ ██║╚██████╗██║ ██║███████╗███████╗██║
╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝╚══════╝╚══════╝╚═╝
███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗
████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║
██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║
██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║
██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║
╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝
```> NOTE: Ascii Art Generator: https://patorjk.com/software/taag/#p=display&f=ANSI%20Shadow&t=Astro%205
## Overview
Software development with Neovim with a focus on Clojure programming language. Includes comprehensive install and usage guides for both experienced and neovim curious.
## Book status



[](https://github.com/practicalli/neovim/actions/workflows/publish-book.yaml)
[](https://github.com/practicalli/neovim/actions/workflows/megalinter.yaml)## Creative commons license
![]()
This work is licensed under a Creative Commons Attribution 4.0 ShareAlike License (including images & stylesheets).Please [read the contributing section of the book](https://practical.li/neovim/introduction/contributing/) before raising an issue or pull request
By submitting content ideas and corrections you are agreeing they can be used in this workshop under the [Creative Commons Attribution ShareAlike 4.0 International license](https://creativecommons.org/licenses/by-sa/4.0/). Attribution will be detailed via [GitHub contributors](https://github.com/practicalli/neovim/graphs/contributors).
## Sponsor Practicalli
[](https://github.com/sponsors/practicalli-johnny/)
All sponsorship funds are used to support the continued development of [Practicalli series of books and videos](https://practical.li/), although most work is done at personal cost and time.
Thanks to [Cognitect](https://www.cognitect.com/), [Nubank](https://nubank.com.br/) and a wide range of other [sponsors](https://github.com/sponsors/practicalli-johnny#sponsors) for your continued support
## GitHub Actions
The megalinter GitHub actions will run when a pull request is created,checking basic markdown syntax.
A review of the change will be carried out by the Practicalli team and the PR merged if the change is acceptable.
The Publish Book GitHub action will run when PR's are merged into main (or the Practicalli team pushes changes to the default branch).
Publish book workflow installs Material for MkDocs version 9
## Local development
Install mkdocs version 9 using the Python pip package manager
```bash
pip3 install mkdocs-material=="9.4"
```Install the plugins used by the Practicalli site using Pip (these are also installed in the GitHub Action workflow)
```bash
pip3 install mkdocs-material mkdocs-callouts mkdocs-glightbox mkdocs-git-revision-date-localized-plugin mkdocs-redirects pillow cairosvg
```> pillow and cairosvg python packages are required for [Social Cards](https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/)
Fork the GitHub repository and clone that fork to your computer,
```bash
git clone https://github.com//.git
```Run a local server from the root of the cloned project
```bash
make docs
```The website will open at
If making smaller changes, then only rebuild the content that changes, speeding up the local development process
```bash
make docs-changed
```