This commit is contained in:
2024-12-18 20:15:17 -05:00
parent 1b0803ef25
commit 1233df80e2
2 changed files with 68 additions and 62 deletions

View File

@@ -14,10 +14,10 @@ return {
"shaunsingh/nord.nvim", "shaunsingh/nord.nvim",
"rose-pine/neovim", "rose-pine/neovim",
"folke/tokyonight.nvim", "folke/tokyonight.nvim",
"uloco/bluloco.nvim" "uloco/bluloco.nvim",
}, },
config = function() config = function()
require("lualine").setup({ require("lualine").setup {
options = { options = {
theme = "auto", theme = "auto",
component_separators = "", component_separators = "",
@@ -35,17 +35,17 @@ return {
end, end,
}, },
}, },
}) }
require("colorizer").setup({ require("colorizer").setup {
"*", "*",
css = { rgb_fn = true }, css = { rgb_fn = true },
})
require("dressing").setup({
select = {
backend = { "nui", "telescope", "builtin" }
} }
}) require("dressing").setup {
require("themery").setup({ select = {
backend = { "nui", "telescope", "builtin" },
},
}
require("themery").setup {
themes = { themes = {
"aquarium", "aquarium",
"vague", "vague",
@@ -59,6 +59,6 @@ return {
"bluloco-dark", "bluloco-dark",
}, },
livePreview = true, livePreview = true,
}) }
end, end,
} }

View File

@@ -0,0 +1,6 @@
column_width = 120
line_endings = "Unix"
indent_type = "Spaces"
indent_width = 2
quote_style = "AutoPreferDouble"
call_parentheses = "None"