modify custom jpbones

This commit is contained in:
Javier Pacheco 2023-09-17 06:29:58 -05:00
parent 084e3f2a6b
commit 9b96bb57e8
3 changed files with 7 additions and 4 deletions

View File

@ -219,7 +219,7 @@ require('lazy').setup({
--
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
{ import = 'custom.plugins' },
}, {})
},{})
-- [[ Setting options ]]
-- See `:help vim.o`
@ -581,4 +581,3 @@ end
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et
require("settings")
vim.cmd([[colorscheme jpbones]])

View File

@ -8,7 +8,11 @@ return {
dependencies = "rktjmp/lush.nvim",
priority = 1000,
config = function()
vim.g.zenbones_transparent_background = true
vim.g.jpbones = {
solid_line_nr = true,
darken_comments = 45,
transparent_background = true,
}
vim.cmd [[colorscheme jpbones]]
end
},

View File

@ -34,7 +34,7 @@ vim.opt.showmode = false
-- Set colorscheme
vim.o.termguicolors = true
vim.cmd([[colorscheme jpbones]])
-- vim.cmd([[colorscheme jpbones]])
local map = vim.api.nvim_set_keymap
local opts = { noremap = true, silent = true }