[nvim theme] fix duplicate entry
This commit is contained in:
parent
a5c7485217
commit
b91cb33519
2 changed files with 25 additions and 14 deletions
|
@ -106,7 +106,6 @@ return {
|
|||
nvim_lsp.gopls.setup({})
|
||||
nvim_lsp.dartls.setup({})
|
||||
nvim_lsp.tsserver.setup({})
|
||||
nvim_lsp.ruff_lsp.setup({})
|
||||
nvim_lsp.pylsp.setup({
|
||||
settings = {
|
||||
pylsp = {
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
return {
|
||||
{
|
||||
"RRethy/nvim-base16",
|
||||
name = "nvim-base16",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme "base16-ocean"
|
||||
end,
|
||||
},
|
||||
-- {
|
||||
-- "RRethy/nvim-base16",
|
||||
-- name = "nvim-base16",
|
||||
-- lazy = false,
|
||||
-- priority = 1000,
|
||||
-- config = function()
|
||||
-- vim.cmd.colorscheme "base16-ocean"
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
'echasnovski/mini.nvim',
|
||||
version = false,
|
||||
|
@ -16,10 +16,22 @@ return {
|
|||
config = function()
|
||||
require('mini.base16').setup({
|
||||
palette = {
|
||||
base00 = '#2b303b', base01 = '#343d46', base02 = '#4f5b66', base03 = '#65737e',
|
||||
base04 = '#a7adba', base05 = '#c0c5ce', base06 = '#dfe1e8', base07 = '#eff1f5',
|
||||
base08 = '#bf616a', base09 = '#d08770', base0A = '#ebcb8b', base0B = '#a3be8c',
|
||||
base0C = '#96b5b4', base0D = '#8fa1b3', base0E = '#b48ead', base0F = '#ab7967'
|
||||
base00 = '#2b303b',
|
||||
base01 = '#343d46',
|
||||
base02 = '#4f5b66',
|
||||
base03 = '#65737e',
|
||||
base04 = '#a7adba',
|
||||
base05 = '#c0c5ce',
|
||||
base06 = '#dfe1e8',
|
||||
base07 = '#eff1f5',
|
||||
base08 = '#bf616a',
|
||||
base09 = '#d08770',
|
||||
base0A = '#ebcb8b',
|
||||
base0B = '#a3be8c',
|
||||
base0C = '#96b5b4',
|
||||
base0D = '#8fa1b3',
|
||||
base0E = '#b48ead',
|
||||
base0F = '#ab7967'
|
||||
},
|
||||
use_cterm = true,
|
||||
plugins = {
|
||||
|
|
Loading…
Reference in a new issue