Neovim like theme

Neovim theme is a neovim like theme for zola.

screenshot

exemple: https://super-botman.github.io

Instalation

cd themes
git clone https://github.com/Super-Botman/neovim-theme.git

then enable it in your config

theme = "neovim-theme"

Config

You can setup the blog name with config file in extra

[extra]
blog_name = "name"

Customisation

JS

You can add some custom javascript function with this parameter:

[extra]
custom_script = "<path>.js" 

then you just add a file static/js/custom_script.js and define your custom functions like this:

// add special commands
function custom_commands(command, args){
   ...
}

// add special init routine
function custom_init(){
    ...
}

CSS

And for css

[extra]
custom_css = "<path>.css"