3rd party Neovim plugin that compliments https://mise.jdx.dev/

Compare changes

Choose any two refs to compare.

Changed files
+3 -39
.github
workflows
doc
lua
mise
-37
.github/workflows/ci.yml
··· 1 - name: CI 2 - on: 3 - push: 4 - branches: 5 - - 'master' 6 - pull_request: 7 - branches: 8 - - 'master' 9 - 10 - jobs: 11 - docs: 12 - runs-on: ubuntu-latest 13 - steps: 14 - - uses: actions/checkout@v4 15 - - name: panvimdoc 16 - uses: kdheepak/panvimdoc@v4.0.1 17 - with: 18 - vimdoc: mise.nvim 19 - version: "Neovim >= 0.9.0" 20 - demojify: true 21 - treesitter: true 22 - - name: Push changes 23 - uses: stefanzweifel/git-auto-commit-action@v5 24 - with: 25 - commit_message: "chore(build): auto-generate vimdoc" 26 - commit_user_name: "github-actions[bot]" 27 - commit_user_email: "github-actions[bot]@users.noreply.github.com" 28 - commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>" 29 - release: 30 - name: release 31 - needs: 32 - - docs 33 - runs-on: ubuntu-latest 34 - steps: 35 - - uses: googleapis/release-please-action@v4 36 - with: 37 - release-type: simple
+1 -1
README.md
··· 7 7 lazy.nvim 8 8 ```lua 9 9 { 10 - "ejrichards/mise.nvim", 10 + "https://plugins.ejri.dev/mise.nvim", 11 11 opts = {} 12 12 } 13 13 ```
+1 -1
doc/mise.nvim.txt
··· 1 - *mise.nvim.txt* For Neovim >= 0.9.0 Last change: 2024 October 25 1 + *mise.nvim.txt* For Neovim >= 0.9.0 2 2 3 3 ============================================================================== 4 4 Table of Contents *mise.nvim-table-of-contents*
+1
lua/mise/init.lua
··· 94 94 end 95 95 96 96 if options.load_on_setup then 97 + vim.env.PATH = options.initial_path 97 98 load_env(data) 98 99 else 99 100 set_previous(data)