12 lines
319 B
Lua
12 lines
319 B
Lua
|
local config = {
|
||
|
colorscheme = "catppuccin",
|
||
|
|
||
|
-- This function is run last and is a good place to configuring
|
||
|
-- augroups/autocommands and custom filetypes also this just pure lua so
|
||
|
-- anything that doesn't fit in the normal config locations above can go here
|
||
|
--polish = function()
|
||
|
--end,
|
||
|
}
|
||
|
|
||
|
return config
|