From 47378601a0f20b870c209159d11767f681f9add7 Mon Sep 17 00:00:00 2001 From: doryan Date: Wed, 12 Feb 2025 22:42:15 +0400 Subject: [PATCH] feat(plugins conf): update plugins config --- lua/config/plugins/bufferline.lua | 110 +++++++++++++++++++++------ lua/config/plugins/hover_actions.lua | 34 ++++----- lua/config/plugins/rustaceanvim.lua | 65 ++++++++-------- 3 files changed, 131 insertions(+), 78 deletions(-) diff --git a/lua/config/plugins/bufferline.lua b/lua/config/plugins/bufferline.lua index bf42dc6..243a646 100644 --- a/lua/config/plugins/bufferline.lua +++ b/lua/config/plugins/bufferline.lua @@ -1,27 +1,89 @@ vim.opt.termguicolors = true -require("bufferline").setup({ - highlights = { - background = { - italic = false, - }, - buffer_selected = { - bold = true, - }, - }, - options = { - mode = "buffers", - persist_buffer_sort = true, - enforce_regular_tabs = false, - always_show_bufferline = false, - offsets = { - { - filetype = "NeoTree", - text = "File Explorer", - highlight = "Directory", - separator = true, - } - } - } -}) +local utils = require("config.utils.bufferline") +require("bufferline").setup({ + highlights = { + background = { + italic = false, + }, + buffer_selected = { + bold = true, + }, + }, + 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", + numbers = "none", + close_command = function(bufnr) + 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 = { + { + filetype = "undotree", + text = "Undotree", + highlight = "PanelHeading", + 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 }, + }, + +}) diff --git a/lua/config/plugins/hover_actions.lua b/lua/config/plugins/hover_actions.lua index 398f0ca..b8153b0 100644 --- a/lua/config/plugins/hover_actions.lua +++ b/lua/config/plugins/hover_actions.lua @@ -1,23 +1,15 @@ require("hover").setup { - init = function() - -- Require providers - 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.man') - -- require('hover.providers.dictionary') - end, - preview_opts = { - border = 'single' - }, - preview_window = false, - title = true, - mouse_providers = { - 'LSP' - }, - mouse_delay = 1000 + init = function() + require("hover.providers.lsp") + require('hover.providers.diagnostic') + end, + preview_opts = { + border = 'single' + }, + preview_window = false, + title = true, + mouse_providers = { + 'LSP' + }, + mouse_delay = 1000 } diff --git a/lua/config/plugins/rustaceanvim.lua b/lua/config/plugins/rustaceanvim.lua index 39a07a4..c717538 100644 --- a/lua/config/plugins/rustaceanvim.lua +++ b/lua/config/plugins/rustaceanvim.lua @@ -1,37 +1,36 @@ local navic = require("nvim-navic") vim.g.rustaceanvim = { - tools = { - autoSetHints = true, - inlay_hints = { - show_parameter_hints = true, - parameter_hints_prefix = "in: ", -- "<- " - other_hints_prefix = "out: " -- "=> " - } - }, - server = { - on_attach = function(client, bufnr) - navic.attach(client, bufnr) - end, - settings = { - ['rust-analyzer'] = { - assist = { - importEnforceGranularity = true, - importPrefix = "create" - }, - cargo = { allFeatures = true }, - checkOnSave = { - -- default: `cargo check` - command = "clippy", - allFeatures = true - }, - inlayHints = { - lifetimeElisionHints = { - enable = true, - useParameterNames = true - } - } - } - } - } + tools = { + autoSetHints = true, + inlay_hints = { + show_parameter_hints = true, + parameter_hints_prefix = "in: ", -- "<- " + other_hints_prefix = "out: " -- "=> " + } + }, + server = { + on_attach = function(client, bufnr) + navic.attach(client, bufnr) + end, + settings = { + ['rust-analyzer'] = { + assist = { + importEnforceGranularity = true, + importPrefix = "create" + }, + cargo = { allFeatures = true }, + checkOnSave = { + command = "clippy", + allFeatures = true + }, + inlayHints = { + lifetimeElisionHints = { + enable = true, + useParameterNames = true + } + } + } + } + } }