├── .github ├── CODEOWNERS ├── config │ ├── gitleaks.toml │ ├── lychee.toml │ ├── markdown-link-check.json │ ├── markdown-lint.jsonc │ ├── megalinter.yaml │ └── secretlintrc.json ├── pull_request_template.md └── workflows │ ├── changelog-check.yaml │ ├── megalinter.yaml │ ├── publish-book.yaml │ ├── scheduled-stale-check.yaml │ └── scheduled-version-check.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── docs ├── .nojekyll ├── api-tools │ └── index.md ├── assets │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── favicon.svg │ ├── images │ │ ├── practicalli-logo.png │ │ └── social │ │ │ └── README.md │ ├── practicalli-logo.svg │ └── stylesheets │ │ ├── extra.css │ │ └── practicalli-light.css ├── clojure-repl-workflow │ ├── conjure.md │ ├── documentation.md │ ├── index.md │ ├── refactor-tools.md │ ├── structural-editing.md │ └── testing.md ├── index.md ├── install │ ├── astro5-configuration.md │ ├── customise-configuration.md │ ├── index.md │ ├── multiple-configurations.md │ ├── neovide.md │ ├── neovim.md │ ├── terminal-tools.md │ └── troubleshoot.md ├── introduction │ ├── features.md │ └── repl-workflow.md ├── reference │ ├── aligning-text.md │ ├── configuration │ │ ├── astro4.md │ │ ├── astrocommunity.md │ │ ├── fenel-config │ │ │ ├── index.md │ │ │ └── packages │ │ │ │ ├── index.md │ │ │ │ ├── lualine.md │ │ │ │ └── nvim-treesitter.md │ │ └── index.md │ ├── fennel.md │ ├── lua-language │ │ └── index.md │ ├── modal-editing │ │ ├── case.md │ │ ├── folding.md │ │ ├── g-menu.md │ │ ├── index.md │ │ ├── key-binding-reference.md │ │ ├── motions.md │ │ ├── moving-around.md │ │ ├── narrowing.md │ │ ├── neovim-quick-reference.md │ │ ├── speaking-vim.md │ │ ├── tips-for-clojure.md │ │ ├── visual-select.md │ │ └── z-menu.md │ └── neovim │ │ ├── changelist.md │ │ ├── index.md │ │ ├── jumplist.md │ │ ├── language-providers.md │ │ ├── quickfix.md │ │ └── standard-path.md ├── source-control │ ├── diff.md │ ├── index.md │ ├── lazygit.md │ ├── neogit.md │ └── octo.md ├── termux │ ├── clojure-development.md │ ├── custom-shell.md │ ├── fdroid-install.md │ ├── git.md │ ├── index.md │ ├── neovim.md │ ├── setup.md │ └── using-termux.md ├── using-neovim │ ├── comments.md │ ├── file-buffer-window-tab.md │ ├── index.md │ ├── mason.md │ ├── multi-modal-editing.md │ ├── multiple-cursors.md │ ├── navigation.md │ ├── notifications.md │ ├── plugin-manager.md │ ├── refactor.md │ ├── registers.md │ ├── search-replace │ │ ├── grug-far.md │ │ ├── index.md │ │ ├── spectre.md │ │ └── substitute.md │ ├── snippets.md │ ├── spell-check.md │ ├── terminal.md │ └── zen-mode.md └── writing-documentation │ └── index.md ├── includes └── abbreviations.md ├── mkdocs-staging.yml ├── mkdocs.yml └── overrides ├── 404.html ├── main.html └── partials ├── header.html ├── palette.html └── source.html /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/config/gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/config/gitleaks.toml -------------------------------------------------------------------------------- /.github/config/lychee.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/config/lychee.toml -------------------------------------------------------------------------------- /.github/config/markdown-link-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/config/markdown-link-check.json -------------------------------------------------------------------------------- /.github/config/markdown-lint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/config/markdown-lint.jsonc -------------------------------------------------------------------------------- /.github/config/megalinter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/config/megalinter.yaml -------------------------------------------------------------------------------- /.github/config/secretlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/config/secretlintrc.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/changelog-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/workflows/changelog-check.yaml -------------------------------------------------------------------------------- /.github/workflows/megalinter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/workflows/megalinter.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/workflows/publish-book.yaml -------------------------------------------------------------------------------- /.github/workflows/scheduled-stale-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/workflows/scheduled-stale-check.yaml -------------------------------------------------------------------------------- /.github/workflows/scheduled-version-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.github/workflows/scheduled-version-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api-tools/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/api-tools/index.md -------------------------------------------------------------------------------- /docs/assets/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/assets/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/assets/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/favicon-16x16.png -------------------------------------------------------------------------------- /docs/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/favicon-32x32.png -------------------------------------------------------------------------------- /docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/favicon.svg -------------------------------------------------------------------------------- /docs/assets/images/practicalli-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/images/practicalli-logo.png -------------------------------------------------------------------------------- /docs/assets/images/social/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/images/social/README.md -------------------------------------------------------------------------------- /docs/assets/practicalli-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/practicalli-logo.svg -------------------------------------------------------------------------------- /docs/assets/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/assets/stylesheets/practicalli-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/assets/stylesheets/practicalli-light.css -------------------------------------------------------------------------------- /docs/clojure-repl-workflow/conjure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/clojure-repl-workflow/conjure.md -------------------------------------------------------------------------------- /docs/clojure-repl-workflow/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/clojure-repl-workflow/documentation.md -------------------------------------------------------------------------------- /docs/clojure-repl-workflow/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/clojure-repl-workflow/index.md -------------------------------------------------------------------------------- /docs/clojure-repl-workflow/refactor-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/clojure-repl-workflow/refactor-tools.md -------------------------------------------------------------------------------- /docs/clojure-repl-workflow/structural-editing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/clojure-repl-workflow/structural-editing.md -------------------------------------------------------------------------------- /docs/clojure-repl-workflow/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/clojure-repl-workflow/testing.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install/astro5-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/install/astro5-configuration.md -------------------------------------------------------------------------------- /docs/install/customise-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/install/customise-configuration.md -------------------------------------------------------------------------------- /docs/install/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/install/index.md -------------------------------------------------------------------------------- /docs/install/multiple-configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/install/multiple-configurations.md -------------------------------------------------------------------------------- /docs/install/neovide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/install/neovide.md -------------------------------------------------------------------------------- /docs/install/neovim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/install/neovim.md -------------------------------------------------------------------------------- /docs/install/terminal-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/install/terminal-tools.md -------------------------------------------------------------------------------- /docs/install/troubleshoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/install/troubleshoot.md -------------------------------------------------------------------------------- /docs/introduction/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/introduction/features.md -------------------------------------------------------------------------------- /docs/introduction/repl-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/introduction/repl-workflow.md -------------------------------------------------------------------------------- /docs/reference/aligning-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/aligning-text.md -------------------------------------------------------------------------------- /docs/reference/configuration/astro4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/configuration/astro4.md -------------------------------------------------------------------------------- /docs/reference/configuration/astrocommunity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/configuration/astrocommunity.md -------------------------------------------------------------------------------- /docs/reference/configuration/fenel-config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/configuration/fenel-config/index.md -------------------------------------------------------------------------------- /docs/reference/configuration/fenel-config/packages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/configuration/fenel-config/packages/index.md -------------------------------------------------------------------------------- /docs/reference/configuration/fenel-config/packages/lualine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/configuration/fenel-config/packages/lualine.md -------------------------------------------------------------------------------- /docs/reference/configuration/fenel-config/packages/nvim-treesitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/configuration/fenel-config/packages/nvim-treesitter.md -------------------------------------------------------------------------------- /docs/reference/configuration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/configuration/index.md -------------------------------------------------------------------------------- /docs/reference/fennel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/fennel.md -------------------------------------------------------------------------------- /docs/reference/lua-language/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/lua-language/index.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/case.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/folding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/folding.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/g-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/g-menu.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/index.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/key-binding-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/key-binding-reference.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/motions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/motions.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/moving-around.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/moving-around.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/narrowing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/narrowing.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/neovim-quick-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/neovim-quick-reference.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/speaking-vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/speaking-vim.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/tips-for-clojure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/tips-for-clojure.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/visual-select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/visual-select.md -------------------------------------------------------------------------------- /docs/reference/modal-editing/z-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/modal-editing/z-menu.md -------------------------------------------------------------------------------- /docs/reference/neovim/changelist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/neovim/changelist.md -------------------------------------------------------------------------------- /docs/reference/neovim/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/neovim/index.md -------------------------------------------------------------------------------- /docs/reference/neovim/jumplist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/neovim/jumplist.md -------------------------------------------------------------------------------- /docs/reference/neovim/language-providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/neovim/language-providers.md -------------------------------------------------------------------------------- /docs/reference/neovim/quickfix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/neovim/quickfix.md -------------------------------------------------------------------------------- /docs/reference/neovim/standard-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/reference/neovim/standard-path.md -------------------------------------------------------------------------------- /docs/source-control/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/source-control/diff.md -------------------------------------------------------------------------------- /docs/source-control/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/source-control/index.md -------------------------------------------------------------------------------- /docs/source-control/lazygit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/source-control/lazygit.md -------------------------------------------------------------------------------- /docs/source-control/neogit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/source-control/neogit.md -------------------------------------------------------------------------------- /docs/source-control/octo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/source-control/octo.md -------------------------------------------------------------------------------- /docs/termux/clojure-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/termux/clojure-development.md -------------------------------------------------------------------------------- /docs/termux/custom-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/termux/custom-shell.md -------------------------------------------------------------------------------- /docs/termux/fdroid-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/termux/fdroid-install.md -------------------------------------------------------------------------------- /docs/termux/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/termux/git.md -------------------------------------------------------------------------------- /docs/termux/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/termux/index.md -------------------------------------------------------------------------------- /docs/termux/neovim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/termux/neovim.md -------------------------------------------------------------------------------- /docs/termux/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/termux/setup.md -------------------------------------------------------------------------------- /docs/termux/using-termux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/termux/using-termux.md -------------------------------------------------------------------------------- /docs/using-neovim/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/comments.md -------------------------------------------------------------------------------- /docs/using-neovim/file-buffer-window-tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/file-buffer-window-tab.md -------------------------------------------------------------------------------- /docs/using-neovim/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/index.md -------------------------------------------------------------------------------- /docs/using-neovim/mason.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/mason.md -------------------------------------------------------------------------------- /docs/using-neovim/multi-modal-editing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/multi-modal-editing.md -------------------------------------------------------------------------------- /docs/using-neovim/multiple-cursors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/multiple-cursors.md -------------------------------------------------------------------------------- /docs/using-neovim/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/navigation.md -------------------------------------------------------------------------------- /docs/using-neovim/notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/notifications.md -------------------------------------------------------------------------------- /docs/using-neovim/plugin-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/plugin-manager.md -------------------------------------------------------------------------------- /docs/using-neovim/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/refactor.md -------------------------------------------------------------------------------- /docs/using-neovim/registers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/registers.md -------------------------------------------------------------------------------- /docs/using-neovim/search-replace/grug-far.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/search-replace/grug-far.md -------------------------------------------------------------------------------- /docs/using-neovim/search-replace/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/search-replace/index.md -------------------------------------------------------------------------------- /docs/using-neovim/search-replace/spectre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/search-replace/spectre.md -------------------------------------------------------------------------------- /docs/using-neovim/search-replace/substitute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/search-replace/substitute.md -------------------------------------------------------------------------------- /docs/using-neovim/snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/snippets.md -------------------------------------------------------------------------------- /docs/using-neovim/spell-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/spell-check.md -------------------------------------------------------------------------------- /docs/using-neovim/terminal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/terminal.md -------------------------------------------------------------------------------- /docs/using-neovim/zen-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/using-neovim/zen-mode.md -------------------------------------------------------------------------------- /docs/writing-documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/docs/writing-documentation/index.md -------------------------------------------------------------------------------- /includes/abbreviations.md: -------------------------------------------------------------------------------- 1 | *[HTML]: Hyper Text Markup Language 2 | *[W3C]: World Wide Web Consortium 3 | -------------------------------------------------------------------------------- /mkdocs-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/mkdocs-staging.yml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/overrides/404.html -------------------------------------------------------------------------------- /overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/overrides/main.html -------------------------------------------------------------------------------- /overrides/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/overrides/partials/header.html -------------------------------------------------------------------------------- /overrides/partials/palette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/overrides/partials/palette.html -------------------------------------------------------------------------------- /overrides/partials/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practicalli/neovim/HEAD/overrides/partials/source.html --------------------------------------------------------------------------------