379 current 2024-04-17 16:33:20 24.05.20240416.5672bc9 6.8.4-zen1 *

This commit is contained in:
zackartz 2024-04-17 16:33:28 -04:00
parent e3336c2957
commit a99d87f2cd
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
3 changed files with 33 additions and 14 deletions

View file

@ -4,6 +4,7 @@ return {
"akinsho/bufferline.nvim",
event = { "BufReadPost", "BufNewFile" },
dependencies = "nvim-tree/nvim-web-devicons",
after = "catppuccin",
opts = {
options = {
diagnostics = "nvim_lsp",
@ -33,15 +34,34 @@ return {
},
},
config = function(_, opts)
local colors = require("tokyonight.colors")
-- local colors = require("tokyonight.colors")
--
-- vim.opt.showtabline = 2
-- opts.highlights = {
-- background = { bg = colors.night.bg },
-- close_button = { bg = colors.night.bg },
-- separator = { fg = colors.night.bg, bg = colors.night.bg },
-- offset_separator = { bg = colors.night.bg },
-- pick = { bg = colors.night.bg },
-- }
vim.opt.showtabline = 2
opts.highlights = {
background = { bg = colors.night.bg },
close_button = { bg = colors.night.bg },
separator = { fg = colors.night.bg, bg = colors.night.bg },
offset_separator = { bg = colors.night.bg },
pick = { bg = colors.night.bg },
local mocha = require("catppuccin.palettes").get_palette("mocha")
opts = {
highlights = require("catppuccin.groups.integrations.bufferline").get({
styles = { "italic", "bold" },
custom = {
all = {
fill = { bg = "#000000" },
},
mocha = {
background = { fg = mocha.text },
},
latte = {
background = { fg = "#000000" },
},
},
}),
}
require("bufferline").setup(opts)

View file

@ -5,11 +5,11 @@ return {
event = { "BufReadPost", "BufNewFile" },
dependencies = { "nvim-tree/nvim-web-devicons" },
config = function(_, opts)
local colors = require("tokyonight.colors")
local tokyonight = require("lualine.themes.catppuccin")
vim.opt.laststatus = 3
tokyonight.normal.c.bg = colors.night.bg
-- local colors = require("tokyonight.colors")
-- local tokyonight = require("lualine.themes.catppuccin")
--
-- vim.opt.laststatus = 3
-- tokyonight.normal.c.bg = colors.night.bg
opts.options.theme = "catppuccin"
require("lualine").setup(opts)

View file

@ -55,7 +55,6 @@
"telescope-fzf-native.nvim": { "branch": "main", "commit": "9ef21b2e6bb6ebeaf349a0781745549bbb870d27" },
"telescope.nvim": { "branch": "master", "commit": "d00d9df48c00d8682c14c2b5da78bda7ef06b939" },
"toggleterm.nvim": { "branch": "main", "commit": "193786e0371e3286d3bc9aa0079da1cd41beaa62" },
"tokyonight.nvim": { "branch": "main", "commit": "9bf9ec53d5e87b025e2404069b71e7ebdc3a13e5" },
"treesj": { "branch": "main", "commit": "60e27280030f9cd8dfb6ceb335922c6ff76682cc" },
"vim-dadbod": { "branch": "master", "commit": "960bbb7de11b7282a68d579a64e838b487934493" },
"vim-dadbod-completion": { "branch": "master", "commit": "c920cb0ba3dff4b1b0ed373e1c0b3007dec696c2" },