mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01: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 = false, -- always use the latest git commit
|
||||||
-- version = "*", -- try installing the latest stable version for plugins that support semver
|
-- 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
|
checker = { enabled = true }, -- automatically check for plugin updates
|
||||||
performance = {
|
performance = {
|
||||||
rtp = {
|
rtp = {
|
||||||
|
|
@ -35,7 +35,7 @@ require("lazy").setup({
|
||||||
"gzip",
|
"gzip",
|
||||||
-- "matchit",
|
-- "matchit",
|
||||||
-- "matchparen",
|
-- "matchparen",
|
||||||
-- "netrwPlugin",
|
"netrwPlugin",
|
||||||
"tarPlugin",
|
"tarPlugin",
|
||||||
"tohtml",
|
"tohtml",
|
||||||
"tutor",
|
"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 },
|
{ "echasnovski/mini.comment", enabled = false },
|
||||||
{ "JoosepAlviste/nvim-ts-context-commentstring", enabled = false },
|
{ "JoosepAlviste/nvim-ts-context-commentstring", enabled = false },
|
||||||
|
|
||||||
|
-- COLORSCHEME
|
||||||
|
{ "folke/tokyonight.nvim", enabled = false },
|
||||||
|
|
||||||
-- EDITOR
|
-- EDITOR
|
||||||
-- remove and replace with nvim-tree; copy config to nvim-tree if possible
|
-- remove and replace with nvim-tree; copy config to nvim-tree if possible
|
||||||
{ "nvim-neo-tree/neo-tree.nvim", enabled = false },
|
{ "nvim-neo-tree/neo-tree.nvim", enabled = false },
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue