All Projects → ahmedkhalf → jupyter-nvim

ahmedkhalf / jupyter-nvim

Licence: MIT License
Jupyter notebook client in neovim

Programming Languages

python
139335 projects - #7 most used programming language
lua
6591 projects

🪐 Jupyter-Nvim

Read jupyter notebooks in neovim

image

Note: The plugin is still in alpha stage

⚡️ Requirements

  • Neovim >= 0.5.0

📦 Installation

Install the plugin with your preferred package manager:

vim-plug

" Vim Script
Plug 'ahmedkhalf/jupyter-nvim', { 'do': ':UpdateRemotePlugins' }

lua << EOF
  require("jupyter-nvim").setup {
    -- your configuration comes here
    -- or leave it empty to use the default settings
    -- refer to the configuration section below
  }
EOF

packer

-- Lua
use {
  "ahmedkhalf/jupyter-nvim",
  run = ":UpdateRemotePlugins",
  config = function()
    require("jupyter-nvim").setup {
      -- your configuration comes here
      -- or leave it empty to use the default settings
      -- refer to the configuration section below
    }
  end
}

⚙️ Configuration

jupyter-nvim comes with the following defaults:

{
  -- Nothing till now
}

👾 Usage

Just open any *.ipynb file and voila!

Contributing

All contributions are welcome! Even bug report count as a contribution, so if there is anything off don't hesitate to open an issue.

🚀 TODO

You can find the todo on github projects.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].