test light theme
This commit is contained in:
parent
03e56873bc
commit
27bac8f80e
16
init.lua
16
init.lua
@ -1,13 +1,13 @@
|
||||
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
||||
if not vim.loop.fs_stat(lazypath) then
|
||||
vim.fn.system({
|
||||
"git",
|
||||
"clone",
|
||||
"--filter=blob:none",
|
||||
"--single-branch",
|
||||
"https://github.com/folke/lazy.nvim.git",
|
||||
vim.fn.system {
|
||||
'git',
|
||||
'clone',
|
||||
'--filter=blob:none',
|
||||
'--single-branch',
|
||||
'https://github.com/folke/lazy.nvim.git',
|
||||
lazypath,
|
||||
})
|
||||
}
|
||||
end
|
||||
vim.opt.runtimepath:prepend(lazypath)
|
||||
|
||||
@ -22,5 +22,5 @@ vim.api.nvim_create_autocmd('User', {
|
||||
end,
|
||||
})
|
||||
|
||||
vim.o.background = 'dark'
|
||||
vim.o.background = 'light'
|
||||
vim.cmd 'colorscheme gruvbox'
|
||||
|
@ -11,16 +11,16 @@ function M.config()
|
||||
local feline = require 'feline'
|
||||
|
||||
local theme = {
|
||||
fg = '#abb2bf',
|
||||
bg = '#282828',
|
||||
green = '#98c379',
|
||||
yellow = '#e5c07b',
|
||||
fg = '#7c879c',
|
||||
bg = '#efe2c3',
|
||||
green = '#66cc66',
|
||||
yellow = '#d5992a',
|
||||
purple = '#c678dd',
|
||||
orange = '#d19a66',
|
||||
orange = '#b17135',
|
||||
peanut = '#f6d5a4',
|
||||
red = '#e06c75',
|
||||
aqua = '#61afef',
|
||||
bg2 = '#504945',
|
||||
bg2 = '#dfce9f',
|
||||
dark_red = '#f75f5f',
|
||||
}
|
||||
|
||||
|
@ -16,7 +16,7 @@ function M.config()
|
||||
invert_tabline = false,
|
||||
invert_intend_guides = false,
|
||||
inverse = true, -- invert background for search, diffs, statuslines and errors
|
||||
contrast = '', -- can be "hard", "soft" or empty string
|
||||
contrast = 'hard', -- can be "hard", "soft" or empty string
|
||||
palette_overrides = {},
|
||||
overrides = {},
|
||||
dim_inactive = false,
|
||||
|
Loading…
Reference in New Issue
Block a user