create colour scheme tructure
This commit is contained in:
parent
2b558d4e4d
commit
61400a7c9b
10 changed files with 214 additions and 3 deletions
18
colors/paper-tonic-modern.lua
Normal file
18
colors/paper-tonic-modern.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
-- Paper Tonic Modern
|
||||
-- A light, paper-like colorscheme for Neovim
|
||||
-- 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 background to light
|
||||
vim.o.background = 'light'
|
||||
|
||||
-- Load the colorscheme
|
||||
require('paper-tonic-modern').load()
|
||||
Loading…
Add table
Add a link
Reference in a new issue