feat: add appearance configuration
This commit is contained in:
37
lua/dot013/plugins/appearance.lua
Normal file
37
lua/dot013/plugins/appearance.lua
Normal file
@@ -0,0 +1,37 @@
|
||||
return {
|
||||
{
|
||||
"catppuccin-nvim",
|
||||
priority = 1000,
|
||||
after = function()
|
||||
require("catppuccin").setup({
|
||||
flavour = "mocha",
|
||||
transparent_background = true,
|
||||
})
|
||||
vim.cmd.colorscheme("catppuccin")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"lualine.nvim",
|
||||
priority = 1000,
|
||||
after = function()
|
||||
require("lualine").setup({
|
||||
options = {
|
||||
icons_enabled = false,
|
||||
theme = "catppuccin",
|
||||
component_separators = "|",
|
||||
section_separators = "",
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
-- Lualine dependencies
|
||||
{ "nvim-web-devicons", dep_of = { "lualine.nvim" } },
|
||||
|
||||
{
|
||||
"indent-blankline.nvim",
|
||||
priority = 1000,
|
||||
after = function()
|
||||
require("ibl").setup()
|
||||
end,
|
||||
},
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
return {
|
||||
{ import = "dot013.plugins.appearance" },
|
||||
{ import = "dot013.plugins.navigation" },
|
||||
|
||||
-- Global Dependencies
|
||||
|
||||
Reference in New Issue
Block a user