mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
use catppuccin
This commit is contained in:
parent
6baf731f4b
commit
2363fb3922
3 changed files with 24 additions and 2 deletions
|
|
@ -26,7 +26,7 @@ require("lazy").setup({
|
|||
version = false, -- always use the latest git commit
|
||||
-- version = "*", -- try installing the latest stable version for plugins that support semver
|
||||
},
|
||||
install = { colorscheme = { "tokyonight", "habamax" } },
|
||||
-- install = { colorscheme = { "tokyonight", "habamax" } },
|
||||
checker = { enabled = true }, -- automatically check for plugin updates
|
||||
performance = {
|
||||
rtp = {
|
||||
|
|
@ -35,7 +35,7 @@ require("lazy").setup({
|
|||
"gzip",
|
||||
-- "matchit",
|
||||
-- "matchparen",
|
||||
-- "netrwPlugin",
|
||||
"netrwPlugin",
|
||||
"tarPlugin",
|
||||
"tohtml",
|
||||
"tutor",
|
||||
|
|
|
|||
19
lua/plugins/colorscheme.lua
Normal file
19
lua/plugins/colorscheme.lua
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
return {
|
||||
{
|
||||
-- The plugin is "catppuccin/nvim" but LazyVim calls it "catppuccin"
|
||||
"catppuccin",
|
||||
opts = {
|
||||
flavour = "mocha",
|
||||
dim_inactive = {
|
||||
enabled = true,
|
||||
percentage = 0.05,
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "catppuccin",
|
||||
}
|
||||
},
|
||||
}
|
||||
|
|
@ -7,6 +7,9 @@ return {
|
|||
{ "echasnovski/mini.comment", enabled = false },
|
||||
{ "JoosepAlviste/nvim-ts-context-commentstring", enabled = false },
|
||||
|
||||
-- COLORSCHEME
|
||||
{ "folke/tokyonight.nvim", enabled = false },
|
||||
|
||||
-- EDITOR
|
||||
-- remove and replace with nvim-tree; copy config to nvim-tree if possible
|
||||
{ "nvim-neo-tree/neo-tree.nvim", enabled = false },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue