feat(UI): use catppuccin
This commit is contained in:
parent
f040866c31
commit
4abbe0eadd
@ -1,6 +1,7 @@
|
||||
{
|
||||
"LazyVim": { "branch": "main", "commit": "91fe7ef56815263b6a0f4a5c23c4bd1134c77849" },
|
||||
"bufferline.nvim": { "branch": "main", "commit": "99337f63f0a3c3ab9519f3d1da7618ca4f91cffe" },
|
||||
"catppuccin": { "branch": "main", "commit": "5215ea59df6d0a7e27da9a5cd1165e06d1b04cbe" },
|
||||
"clangd_extensions.nvim": { "branch": "main", "commit": "f36d788f05cfb73d4fd2e606e6ad15f8b842124f" },
|
||||
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
|
||||
"cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" },
|
||||
|
@ -1,15 +1,6 @@
|
||||
vim.o.background = "dark"
|
||||
|
||||
local Util = require("lazyvim.util")
|
||||
|
||||
return {
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "moonfly",
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
opts = { options = { always_show_bufferline = true } },
|
||||
@ -91,18 +82,6 @@ return {
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
"echasnovski/mini.indentscope",
|
||||
opts = {
|
||||
draw = {
|
||||
animation = require("mini.indentscope").gen_animation.none(),
|
||||
},
|
||||
symbol = "┆",
|
||||
},
|
||||
},
|
||||
|
||||
{ "bluz71/vim-moonfly-colors" },
|
||||
|
||||
{
|
||||
"folke/noice.nvim",
|
||||
opts = {
|
||||
|
37
lua/plugins/colorscheme.lua
Normal file
37
lua/plugins/colorscheme.lua
Normal file
@ -0,0 +1,37 @@
|
||||
vim.o.background = "dark"
|
||||
|
||||
return {
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "catppuccin",
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
"catppuccin",
|
||||
enabled = true,
|
||||
opts = {
|
||||
color_overrides = {
|
||||
mocha = {
|
||||
base = "#000000",
|
||||
mantle = "#000000",
|
||||
crust = "#000000",
|
||||
surface0 = "#953E13",
|
||||
},
|
||||
latte = {
|
||||
base = "#f6f7f8",
|
||||
},
|
||||
},
|
||||
dim_inactive = {
|
||||
enabled = true,
|
||||
shade = "light",
|
||||
percentage = 0.3,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
{ "folke/tokyonight.nvim", enabled = false },
|
||||
|
||||
{ "bluz71/vim-moonfly-colors", enabled = false },
|
||||
}
|
@ -1,5 +1,3 @@
|
||||
return {
|
||||
{ "catppuccin", enabled = false },
|
||||
{ "folke/tokyonight.nvim", enabled = false },
|
||||
{ "lukas-reineke/indent-blankline.nvim", enabled = false },
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user