neovim scripting notes
Apr 25, 2023
to print a table, neovim has a handy function vim.inspect
. I used it to inspect a table of colors like so:
:lua print(vim.inspect(require("mini.base16").mini_palette("#252A39", "#CBCCC6", 75)))
to print a table, neovim has a handy function vim.inspect
. I used it to inspect a table of colors like so:
:lua print(vim.inspect(require("mini.base16").mini_palette("#252A39", "#CBCCC6", 75)))