feat(plugins conf): update plugins config

This commit is contained in:
doryan 2025-02-12 22:42:15 +04:00
parent 61ec656e98
commit 47378601a0
3 changed files with 131 additions and 78 deletions

View File

@ -1,5 +1,7 @@
vim.opt.termguicolors = true vim.opt.termguicolors = true
local utils = require("config.utils.bufferline")
require("bufferline").setup({ require("bufferline").setup({
highlights = { highlights = {
background = { background = {
@ -10,18 +12,78 @@ require("bufferline").setup({
}, },
}, },
options = { options = {
themable = true,
get_element_icon = nil,
show_duplicate_prefix = true,
duplicates_across_groups = true,
auto_toggle_bufferline = true,
move_wraps_at_ends = false,
groups = { items = {}, options = { toggle_hidden_on_enter = true } },
mode = "buffers", mode = "buffers",
persist_buffer_sort = true, numbers = "none",
enforce_regular_tabs = false, close_command = function(bufnr)
always_show_bufferline = false, utils.buf_kill("bd", bufnr, false)
end,
right_mouse_command = "vert sbuffer %d",
left_mouse_command = "buffer %d",
middle_mouse_command = nil,
name_formatter = function(buf)
if buf.name:match "%.md" then
return vim.fn.fnamemodify(buf.name, ":t:r")
end
end,
max_name_length = 18,
max_prefix_length = 15,
truncate_names = true,
tab_size = 18,
diagnostics = "nvim_lsp",
diagnostics_update_in_insert = false,
custom_filter = utils.custom_filter,
offsets = { offsets = {
{ {
filetype = "NeoTree", filetype = "undotree",
text = "File Explorer", text = "Undotree",
highlight = "Directory", highlight = "PanelHeading",
separator = true, padding = 1,
} },
} {
} filetype = "NvimTree",
}) text = "Explorer",
highlight = "PanelHeading",
padding = 1,
},
{
filetype = "DiffviewFiles",
text = "Diff View",
highlight = "PanelHeading",
padding = 1,
},
{
filetype = "flutterToolsOutline",
text = "Flutter Outline",
highlight = "PanelHeading",
},
{
filetype = "lazy",
text = "Lazy",
highlight = "PanelHeading",
padding = 1,
},
},
color_icons = true,
show_close_icon = false,
show_tab_indicators = true,
persist_buffer_sort = true,
separator_style = "thin",
enforce_regular_tabs = false,
always_show_bufferline = false,
hover = {
enabled = false,
delay = 200,
reveal = { "close" },
},
sort_by = "id",
debug = { logging = false },
},
})

View File

@ -1,15 +1,7 @@
require("hover").setup { require("hover").setup {
init = function() init = function()
-- Require providers
require("hover.providers.lsp") require("hover.providers.lsp")
-- require('hover.providers.gh')
-- require('hover.providers.gh_user')
-- require('hover.providers.jira')
-- require('hover.providers.dap')
-- require('hover.providers.fold_preview')
require('hover.providers.diagnostic') require('hover.providers.diagnostic')
-- require('hover.providers.man')
-- require('hover.providers.dictionary')
end, end,
preview_opts = { preview_opts = {
border = 'single' border = 'single'

View File

@ -21,7 +21,6 @@ vim.g.rustaceanvim = {
}, },
cargo = { allFeatures = true }, cargo = { allFeatures = true },
checkOnSave = { checkOnSave = {
-- default: `cargo check`
command = "clippy", command = "clippy",
allFeatures = true allFeatures = true
}, },