无需插件即可编辑 neovim 启动屏幕
Edit neovim start screen without plugins
我喜欢编辑这个 neovim 启动屏幕
NVIM v0.6.1
Nvim is open source and freely distributable
https://neovim.io/#chat
type :help nvim<Enter> if you are new!
type :checkhealth<Enter> to optimize Nvim
type :q<Enter> to exit
type :help<Enter> for help
Help poor children in Uganda!
type :help iccf<Enter> for information
但是,在没有任何插件的情况下,我尝试在 /usr/share/nvim/runtime
上搜索文件,但我没有找到任何东西
如何更改启动屏幕?
介绍屏幕硬编码在 Vim/Neovim 源代码中,不可自定义。
相反,可以将一些内容写入文本缓冲区并在一段时间后将其删除。不过,这将需要一些脚本编写。这就是“插件”的工作方式。
“插件”是实现额外功能所需的脚本行的集合。所以“plugin”与“~/.vimrc”或“/usr/share/nvim/runtime”等没有太大区别,只是它是另一个人写的。如果你不喜欢别人的代码,那就去把它做得更好。
我喜欢编辑这个 neovim 启动屏幕
NVIM v0.6.1
Nvim is open source and freely distributable
https://neovim.io/#chat
type :help nvim<Enter> if you are new!
type :checkhealth<Enter> to optimize Nvim
type :q<Enter> to exit
type :help<Enter> for help
Help poor children in Uganda!
type :help iccf<Enter> for information
但是,在没有任何插件的情况下,我尝试在 /usr/share/nvim/runtime
上搜索文件,但我没有找到任何东西
如何更改启动屏幕?
介绍屏幕硬编码在 Vim/Neovim 源代码中,不可自定义。
相反,可以将一些内容写入文本缓冲区并在一段时间后将其删除。不过,这将需要一些脚本编写。这就是“插件”的工作方式。
“插件”是实现额外功能所需的脚本行的集合。所以“plugin”与“~/.vimrc”或“/usr/share/nvim/runtime”等没有太大区别,只是它是另一个人写的。如果你不喜欢别人的代码,那就去把它做得更好。