[vim] Add capabilities
and on_attach
to more LSPs
#735
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install the latest fish | |
run: | | |
sudo add-apt-repository ppa:fish-shell/release-3 | |
sudo apt-get update | |
sudo apt-get install -y fish | |
- uses: actions/setup-python@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19.x | |
- uses: pre-commit/[email protected] |