move
This commit is contained in:
parent
f86f18f27a
commit
ebd68fb74c
16 changed files with 662 additions and 808 deletions
20
lua/custom/plugins/colorscheme.lua
Normal file
20
lua/custom/plugins/colorscheme.lua
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
return {
|
||||
"catppuccin/nvim",
|
||||
name = "catppuccin",
|
||||
config = function()
|
||||
require("catppuccin").setup({
|
||||
flavour = "mocha",
|
||||
priority = 1000,
|
||||
lazy = true,
|
||||
transparent_background = true,
|
||||
custom_highlights = function()
|
||||
return {
|
||||
Comment = { fg = "#d4922F" },
|
||||
}
|
||||
end,
|
||||
})
|
||||
end,
|
||||
init = function()
|
||||
vim.cmd.colorscheme("catppuccin")
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue