16 lines
199 B
Go
16 lines
199 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"demo/etc"
|
|
|
|
"git.sr.ht/~cco/go-scopes"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("vim-go")
|
|
scopes.Setup()
|
|
fmt.Println(etc.Config().Name)
|
|
fmt.Println(etc.Override()["name"])
|
|
}
|