magma-nvim Magma is a NeoVim plugin for running code interactively with Jupyter.
Jupynium
Jupynium.nvim It’s just like a markdown live preview, but it’s Jupyter Notebook live preview!
Jupynium uses Selenium to automate Jupyter Notebook, synchronising everything you type on Neovim. Never leave Neovim. Switch tabs on the browser as you switch files on Neovim.
Posted Updated a few seconds read (About 22 words)
Note: Throughout the user manual these defaults are used as placeholders, e.g. “~/.config” is understood to mean “$XDG_CONFIG_HOME or ~/.config”.
LOG FILE $NVIM_LOG_FILEE5430 Besides ‘debug’ and ‘verbose’, Nvim keeps a general log file for internal debugging, plugins and RPC clients. :echo $NVIM_LOG_FILE By default, the file is located at stdpath(“log”)/log unless that path is inaccessible or if $NVIM_LOG_FILE was set before |startup|.
namespace ModernAirCombat { public enum BlockList { SRAAM = 1, MRAAM = 2, LRAAM = 3 } public class ModernAirCombat : ModEntryPoint { public static GameObject Mod; public override void OnLoad() { Mod = new GameObject("Morden Firearm Kit Mod"); UnityEngine.Object.DontDestroyOnLoad(Mod); \\avoid destroy mod instance when changing levels Debug.Log("Hello, this is Modern Air Combat!"); // Called when the mod is loaded. } } }