Launches a video with subway surf gameplay in nvim
-
:ThisCodeIsSoBoring
- start default subway surf gameplay video in the current window. -
":ThisCodeIsSoBoring {video}
- start your subway surf gameplay video in the current window,video
is url or path on your computer. -
:SetThisCodeIsSoBoringVideo {video}
- set default subway surf gameplay video,video
is url or path on your computer.
For all install methods you need to have nvim, python3 and pynvim
- Clone this repo
- Install python requirements:
pip install --user -r requirements.txt
- Add plugin folder in
runtimepath
- Run
:UpdateRemotePlugins
in nvim - Restart nvim
Install using lazy
- Add this lines in your lazy section of init.lua:
{
"INoorik/ThisCodeIsSoBoring.nvim",
keys = {
},
config = function()
vim.api.nvim_eval('UpdateRemotePlugins')
vim.api.nvim_eval('!pip install --user -r requirements.txt')
end,
}
- Run
:Lazy install
in nvim - Restart nvim
Install using packer.nvim
- Add this lines in your packer section
use { 'INoorik/ThisCodeIsSoBoring.nvim', run={'pip install --user -r requirements.txt', ':UpdateRemotePlugins'}}
- run
:PackerInstall
in nvim - Restart nvim
Install using vim-plug
- Add this lines in your vim-plug section
Plug 'INoorik/ThisCodeIsSoBoring.nvim', {'do': ':UpdateRemotePlugins \|!pip install --user -r requirements.txt'}
- Run
:PlugInstall
in nvim - Restart nvim