Update lazy.nvim plugins :)

This commit is contained in:
Danielle McLean 2024-12-17 16:13:13 +11:00
parent 879b82105c
commit c22222cc6d
Signed by: 00dani
GPG key ID: 6854781A0488421C
3 changed files with 26 additions and 27 deletions

View file

@ -35,7 +35,7 @@ local servers = {
pylsp = {},
solargraph = {},
taplo = {},
tsserver = {},
ts_ls = {},
yamlls = {},
}

View file

@ -24,9 +24,7 @@ return {
-- Unimpaired's handy bracket mappings, but also which-key.nvim knows about them and can remind me of them.
{"afreakk/unimpaired-which-key.nvim", dependencies = {"tpope/vim-unimpaired"}, config = function()
local wk = require "which-key"
local uwk = require "unimpaired-which-key"
wk.register(uwk.normal_mode)
wk.register(uwk.normal_and_visual_mode, {mode = {"n", "v"}})
wk.add(require "unimpaired-which-key")
end},
-- Fuzzy finder for all sorts of things. Files, buffers, LSP references and definitions, the list goes on.