format
This commit is contained in:
@ -2,10 +2,8 @@ return {
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
version = "*",
|
||||
dependencies = "nvim-tree/nvim-web-devicons",
|
||||
config = function()
|
||||
vim.opt.termguicolors = true
|
||||
require("bufferline").setup({
|
||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||
opts = {
|
||||
options = {
|
||||
hover = {
|
||||
enabled = true,
|
||||
@ -35,8 +33,39 @@ return {
|
||||
truncate_name = false,
|
||||
show_close_icon = false,
|
||||
show_buffer_close_icons = false,
|
||||
-- groups = {
|
||||
-- options = {
|
||||
-- toggle_hidden_on_enter = true, -- when you re-enter a hidden group this options re-opens that group so the buffer is visible
|
||||
-- },
|
||||
-- items = {
|
||||
-- {
|
||||
-- name = "Tests", -- Mandatory
|
||||
-- highlight = { sp = "lightblue" }, -- Optional
|
||||
-- priority = 2, -- determines where it will appear relative to other groups (Optional)
|
||||
-- icon = " ", -- Optional
|
||||
-- matcher = function(buf) -- Mandatory
|
||||
-- return buf.path:match("%_test.cc$") or buf.path:match("%Test.java$")
|
||||
-- end,
|
||||
-- },
|
||||
-- {
|
||||
-- name = "Docs",
|
||||
-- highlight = { sp = "lightgreen" },
|
||||
-- auto_close = false, -- whether or not close this group if it doesn't contain the current buffer
|
||||
-- matcher = function(buf)
|
||||
-- return buf.path:match("%.md$") or buf.path:match("%.txt$")
|
||||
-- end,
|
||||
-- },
|
||||
-- {
|
||||
-- name = "Lua",
|
||||
-- highlight = { sp = "lightblue" },
|
||||
-- auto_close = false, -- whether or not close this group if it doesn't contain the current buffer
|
||||
-- matcher = function(buf)
|
||||
-- return buf.path:match("%.lua$")
|
||||
-- end,
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
@ -30,8 +30,6 @@ return {
|
||||
glug("glaive"),
|
||||
glug("alert"),
|
||||
glug("googlespell"),
|
||||
-- Enable logmsgs ASAP to avoid maktaba's log message queue filling up
|
||||
glug("google-logo"),
|
||||
-- Add support for google filetypes
|
||||
glug("google-filetypes", { event = { "BufReadPre", "BufNewFile" }, dependencies = {} }),
|
||||
|
||||
@ -258,8 +256,7 @@ return {
|
||||
name = "telescope_codesearch",
|
||||
url = "sso://googler@user/vintharas/telescope-codesearch.nvim",
|
||||
dependencies = { "nvim-telescope/telescope.nvim" },
|
||||
config = function()
|
||||
end,
|
||||
config = function() end,
|
||||
},
|
||||
{
|
||||
name = "telescope_citc",
|
||||
|
Reference in New Issue
Block a user