Compare commits

...

2 Commits

3 changed files with 82 additions and 27 deletions

View File

@ -1,26 +1,76 @@
# https://github.com/zenbones-theme/zenbones.nvim/blob/main/extras/alacritty/zenbones_dark.toml
# This file is auto-generated by shipwright.nvim
[colors.bright]
black = "#403833"
red = "#E8838F"
green = "#8BAE68"
yellow = "#D68C67"
blue = "#61ABDA"
magenta = "#CF86C1"
cyan = "#65B8C1"
white = "#888F94"
[colors.cursor]
cursor = "#C4CACF"
text = "#1C1917"
[colors.normal]
black = "#1C1917"
blue = "#6099C0"
cyan = "#66A5AD"
green = "#819B69"
magenta = "#B279A7"
red = "#DE6E7C"
white = "#B4BDC3"
yellow = "#B77E64"
# https://github.com/alacritty/alacritty-theme/blob/master/themes/meliora.toml
[colors.primary]
background = "#141D1C"
foreground = "#9BAFAC"
background = '#1c1917'
foreground = '#d6d0cd'
# Bright and dim foreground colors
dim_foreground = '#d6d0cd'
bright_foreground = '#d6d0cd'
# Cursor colors
[colors.cursor]
text = '#1c1917'
cursor = '#d6d0cd'
[colors.vi_mode_cursor]
text = '#1c1917'
cursor = '#d6d0cd'
# Search colors
[colors.search]
matches = { foreground = '#1c1917', background = '#24201e' }
focused_match = { foreground = '#1c1917', background = '#2a2522' }
[colors.footer_bar]
foreground = '#1c1917'
background = '#b8aea8'
# Keyboard regex hints
[colors.hints]
start = { foreground = '#1c1917', background = '#c4b392' }
end = { foreground = '#1c1917', background = '#24201e' }
# Selection colors
[colors.selection]
text = '#d6d0cd'
background = '#2a2522'
# Normal colors
[colors.normal]
black = '#2a2421'
red = '#d49191'
green = '#b6b696'
yellow = '#c4b392'
blue = '#9e96b6'
magenta = '#b696b1'
cyan = '#98acc8'
white = '#ddd9d6'
# Bright colors
[colors.bright]
black = '#2e2622'
red = '#d89393'
green = '#b9b99b'
yellow = '#c8b692'
blue = '#a299b9'
magenta = '#b997b4'
cyan = '#9bb0ca'
white = '#e1dbd9'
# Dim colors
[colors.dim]
black = '#2a2421'
red = '#d18989'
green = '#727246'
yellow = '#c1b090'
blue = '#9b92b3'
magenta = '#b393ad'
cyan = '#95a9c5'
white = '#e3d5ce'
[[colors.indexed_colors]]
index = 16
color = '#c4b392'
[[colors.indexed_colors]]
index = 17
color = '#ddd9d6'

View File

@ -26,6 +26,7 @@
"mason-lspconfig.nvim": { "branch": "main", "commit": "1a31f824b9cd5bc6f342fc29e9a53b60d74af245" },
"mason-tool-installer.nvim": { "branch": "main", "commit": "5639d58a3d11ff7c05c8e31e159bfedae55d7961" },
"mason.nvim": { "branch": "main", "commit": "fc98833b6da5de5a9c5b1446ac541577059555be" },
"mellifluous.nvim": { "branch": "v1", "commit": "1637e46585435ebda7963248e0e65422effad8d9" },
"neodev.nvim": { "branch": "main", "commit": "46aa467dca16cf3dfe27098042402066d2ae242d" },
"neogit": { "branch": "master", "commit": "12f78aaabb37b4946254dd5e47cf7b552904937a" },
"nvim-cmp": { "branch": "main", "commit": "c27370703e798666486e3064b64d59eaf4bdc6d5" },

View File

@ -1,11 +1,15 @@
return {
{
'rmehri01/onenord.nvim',
"ramojus/mellifluous.nvim",
branch = "v1",
config = function()
vim.o.background = require('lupan.utils').terminalbg()
vim.cmd.colorscheme('onenord')
vim.cmd.colorscheme('mellifluous')
end
},
{
'rmehri01/onenord.nvim',
},
{
-- Indentation guides (see `:help indent_blankline.txt`)
'lukas-reineke/indent-blankline.nvim',