You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DataNvim is a custom Neovim distribution prepared for Data Science and to easily run code and interact with Jupyter Notebooks without ever leaving your terminal. It also provides a well structured config that makes it an easy starting point to extend it as you want.
DataNvim is a very straightforward Neovim distribution that aims to be a batteries-included starting point for Data Science in Neovim. Thus, its directory structure for configuration is meant to be easy to understand:
├── init.lua <- Neovim's entrypoint. You should probably not modify anything here. Just require your own files.
├── lua <- Configuration for DataNvim goes here.
│ ├── plugins.lua <- Empty table. It will contain everything inside plugins/
│ ├── vim-options.lua <- Vim options and general movement keybindings.
│ ├── plugins <- This folder contains all of your plugins. To install new ones, create a file and make it return your plugin.
│ │ └── plugin_name.lua <- Returns a table with the plugin to install and its configuration.
About
A fully-featured batteries-included Neovim distribution for the world of Data Science. Prepared to run code and interact with Jupyter Notebooks without ever leaving your terminal.