mirror of
https://shylinux.com/x/icebergs
synced 2025-04-26 01:24:05 +08:00
16 lines
249 B
Go
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()},
|
|
})
|
|
}
|