1
0
forked from x/icebergs
icebergs/misc/vim/vimrc.go
2022-12-12 19:42:06 +08:00

16 lines
277 B
Go

package vim
import (
ice "shylinux.com/x/icebergs"
"shylinux.com/x/icebergs/core/code"
)
const VIMRC = "vimrc"
func init() {
Index.MergeCommands(ice.Commands{
VIM: {Name: "vim", Actions: code.PlugAction()},
VIMRC: {Name: "vimrc", Actions: code.PlugAction()},
})
}