diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/lsp-issue-form.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/install.yaml | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml index 6597ec2a..2fabeee6 100644 --- a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml +++ b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml @@ -31,9 +31,9 @@ body: required: true - label: I restarted Neovim after running :LspInstall required: true - - label: I have a valid language configuration (~/.config/nvim/ftplugin/) + - label: I have a valid language configuration (~/.config/lvim/ftplugin/) required: true - - label: I checked the options (~/.config/nvim/lv-config.lua) + - label: I checked the options (~/.config/lvim/config.lua) required: true - label: The programs specified by the config are installed - type: input diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index e31607fe..08801f1b 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -30,13 +30,14 @@ jobs: sudo apt-get update sudo apt-get install neovim -y - - name: Installl dependencies for OSX + - name: Install dependencies for OSX if: matrix.os == 'osx' run: | brew update >/dev/null brew install neovim - name: Install LunarVim + timeout-minutes: 4 run: | bash ./utils/installer/install.sh --testing |