More random cleanup

This commit is contained in:
Dreaded_X 2025-05-30 17:39:48 +02:00
parent f8ad93746b
commit 900e844835
Signed by: Dreaded_X
GPG Key ID: 5A0CBFE3C3377FAA
5 changed files with 3 additions and 8 deletions

View File

@ -13,8 +13,6 @@ return {
-- keymap = { preset = "default" }, -- keymap = { preset = "default" },
keymap = { keymap = {
preset = "default", preset = "default",
-- ["<C-u>"] = {function(cmp) cmp.scroll_documentation_up(4) end},
-- ["<C-d>"] = {function(cmp) cmp.scroll_documentation_down(4) end},
["<C-space>"] = { "show", "show_documentation", "hide_documentation" }, ["<C-space>"] = { "show", "show_documentation", "hide_documentation" },
["<C-u>"] = { "scroll_documentation_up" }, ["<C-u>"] = { "scroll_documentation_up" },
["<C-d>"] = { "scroll_documentation_down" }, ["<C-d>"] = { "scroll_documentation_down" },

View File

@ -4,9 +4,6 @@ local file = require("symbols.file")
return { return {
"akinsho/bufferline.nvim", "akinsho/bufferline.nvim",
dependencies = {
"ojroques/nvim-bufdel",
},
config = function() config = function()
-- Enable mousemoveevent if possible -- Enable mousemoveevent if possible
vim.o.mousemoveevent = true vim.o.mousemoveevent = true
@ -34,8 +31,6 @@ return {
show_buffer_icons = false, show_buffer_icons = false,
show_buffer_close_icons = false, show_buffer_close_icons = false,
diagnostics = "nvim_lsp", diagnostics = "nvim_lsp",
-- close_command = "BufDel %d",
-- right_mouse_command = "BufDel %d",
separator_style = "thick", separator_style = "thick",
left_trunc_marker = "", left_trunc_marker = "",
right_trunc_marker = "", right_trunc_marker = "",

View File

@ -12,7 +12,7 @@ return {
require("conform").format({ async = true, lsp_fallback = true }) require("conform").format({ async = true, lsp_fallback = true })
end, end,
mode = "", mode = "",
desc = "[F]ormat buffer", desc = "Format buffer",
}, },
}, },
opts = { opts = {

View File

@ -1,3 +1,4 @@
-- https://github.com/j-hui/fidget.nvim
return { return {
"j-hui/fidget.nvim", "j-hui/fidget.nvim",
opts = { opts = {

View File

@ -43,6 +43,7 @@ return {
schemas = {}, schemas = {},
}) })
-- TODO: Set on lsp attach with filetype yaml?
vim.keymap.set( vim.keymap.set(
"n", "n",
"<leader>ss", "<leader>ss",