1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 01:24:05 +08:00
icebergs/misc/vim/vimrc.go
2022-12-13 21:26:30 +08:00

16 lines
249 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: {Actions: code.PlugAction()},
VIMRC: {Actions: code.PlugAction()},
})
}