Files
solarized.nvim/lua/solarized/init.lua
2021-06-01 12:38:31 -04:00

21 lines
773 B
Lua

-- M O O N L I G H T
-- _..._ _..._ _..._ _..._ _..._
-- .:::::::. .::::. `. .:::: `. .::' `. .' `.
-- ::::::::::: :::::::. : :::::: : ::: : : :
-- ::::::::::: :::::::: : :::::: : ::: : : :
-- `:::::::::' `::::::' .' `::::: .' `::. .' `. .'
-- `':::'' `'::'-' `'::.-' `':..-' `-...-'
-- Colorscheme name: solarized.nvim
-- Description: Port of VSCode's Solarized colorscheme for NeoVim
-- Author: https://github.com/shaunsingh
local util = require('solarized.util')
-- Load the theme
local set = function ()
util.load()
end
return { set = set }