21 lines
531 B
Lua
21 lines
531 B
Lua
-- Paper Tonic Modern
|
|
-- A paper-like colorscheme for Neovim supporting both light and dark modes
|
|
-- Forked from the original Paper Tonic with modern Lua implementation
|
|
|
|
-- Reset highlights and syntax
|
|
vim.cmd('highlight clear')
|
|
if vim.fn.exists('syntax_on') then
|
|
vim.cmd('syntax reset')
|
|
end
|
|
|
|
-- Set colorscheme name
|
|
vim.g.colors_name = 'paper-tonic-modern'
|
|
|
|
-- Set default background if not already set
|
|
if vim.o.background == '' then
|
|
vim.o.background = 'light'
|
|
end
|
|
|
|
-- Load the colorscheme
|
|
require('paper-tonic-modern').load()
|