nvim/mage.go
Hoang Nguyen 82ce78e689
lsp: add denols
Also:
- Sort LSP server confiugration list for better visibility
- Add mage.go run script to invoke `mage`, so that the binary isn't
  required in PATH
- Update go.mod and Neovim plugin dependencies (like always)
2024-01-14 00:00:00 +07:00

13 lines
139 B
Go

//go:build ignore
// +build ignore
package main
import (
"os"
"github.com/magefile/mage/mage"
)
func main() { os.Exit(mage.Main()) }