lazy-nvim migration with basic plugins
This commit is contained in:
parent
b02e4dda6c
commit
e2a8848a27
7 changed files with 109 additions and 75 deletions
28
.config/nvim/lua/plugins/cattpuucin.lua
Normal file
28
.config/nvim/lua/plugins/cattpuucin.lua
Normal file
|
@ -0,0 +1,28 @@
|
|||
return {
|
||||
"catppuccin/nvim",
|
||||
name = "catppuccin",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function() require("catppuccin").setup({
|
||||
flavour = "mocha",
|
||||
background = {
|
||||
light = "latte",
|
||||
dark = "mocha",
|
||||
},
|
||||
color_overrides = {
|
||||
mocha = {
|
||||
base = "#000000",
|
||||
mantle = "#000000"
|
||||
},
|
||||
},
|
||||
transparent_background = false,
|
||||
no_italic = false,
|
||||
no_bold = false,
|
||||
styles = {
|
||||
comments = { "italic" },
|
||||
},
|
||||
integrations = {
|
||||
cmp = true,
|
||||
},
|
||||
}) end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue