1
0

Added DBUI, noice, zen-mode and comments. Changed Tokyonight.lua to theme.lua

This commit is contained in:
2024-09-27 21:08:13 +02:00
parent 6825883350
commit 98dd2510c9
12 changed files with 76 additions and 13 deletions

View File

@@ -0,0 +1,30 @@
-- return {
-- "folke/tokyonight.nvim",
-- lazy = false,
-- priority = 1000,
-- opts = {},
-- config = function()
-- require("tokyonight").setup({
-- style = "night",
-- light_style = "day",
-- transparent = true,
-- terminal_colors = true,
-- dim_inactive = false,
-- lualine_bold = false,
-- })
--
-- vim.cmd [[colorscheme tokyonight]]
-- end
-- }
return {
{
"catppuccin/nvim",
name="catppuccin",
priority=1000,
config = function ()
require("catppuccin").setup()
vim.cmd.colorscheme('catppuccin')
end
}
}