Initial commit

This commit is contained in:
shaunsingh
2021-06-01 12:38:31 -04:00
commit ddd6de19fa
9 changed files with 1150 additions and 0 deletions

20
lua/solarized/init.lua Normal file
View File

@@ -0,0 +1,20 @@
-- 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 }