This commit is contained in:
2025-05-29 01:49:30 +02:00
parent 346c98fc49
commit 09834d7954
7 changed files with 70 additions and 30 deletions

View File

@ -1,5 +1,5 @@
local function config_lsp()
vim.lsp.enable("rust_analyzer")
-- vim.lsp.enable("rust_analyzer")
end
return {
@ -139,4 +139,9 @@ return {
dependencies = { "mfussenegger/nvim-dap", "nvim-neotest/nvim-nio" },
opts = {},
},
{
"mrcjkb/rustaceanvim",
version = "^6", -- Recommended
lazy = false, -- This plugin is already lazy
},
}

View File

@ -23,6 +23,19 @@ return {
filters = {
dotfiles = true,
},
renderer = {
indent_markers = { enable = true },
icons = {
show = {
file = false,
},
glyphs = {
git = {
unstaged = "",
},
},
},
},
},
},
{
@ -74,4 +87,18 @@ return {
open_mapping = "<leader>ot",
},
},
{
"folke/which-key.nvim",
event = "VeryLazy",
opts = {},
keys = {
{
"<leader>?",
function()
require("which-key").show({ global = false })
end,
desc = "Buffer Local Keymaps (which-key)",
},
},
},
}