From a2d6242df917f3248ea247887b53d4b11e41bc81 Mon Sep 17 00:00:00 2001 From: Gaiety Date: Thu, 21 May 2026 19:17:31 -0600 Subject: [PATCH] which-key for neovim --- nvim/init.lua | 7 +++++ nvim/lua/keyhelpers.lua | 3 ++ nvim/nvim-pack-lock.json | 64 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 nvim/lua/keyhelpers.lua diff --git a/nvim/init.lua b/nvim/init.lua index b5af7a9..c9b167d 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -1,8 +1,15 @@ require('options') require('keys') +require('keyhelpers') require('highlighting') require('theme') require('statusline') +require('buffers') +require('tree') +require('undo') +require('telescope') + +require('linter') require('lsp') diff --git a/nvim/lua/keyhelpers.lua b/nvim/lua/keyhelpers.lua new file mode 100644 index 0000000..8c7fa67 --- /dev/null +++ b/nvim/lua/keyhelpers.lua @@ -0,0 +1,3 @@ +vim.pack.add({ + 'https://github.com/folke/which-key.nvim' +}) diff --git a/nvim/nvim-pack-lock.json b/nvim/nvim-pack-lock.json index 4502f1f..3e64a15 100644 --- a/nvim/nvim-pack-lock.json +++ b/nvim/nvim-pack-lock.json @@ -1,16 +1,80 @@ { "plugins": { + "ale": { + "rev": "ba8b9cbab95131e284c5be926642f803b2be0058", + "src": "https://github.com/dense-analysis/ale" + }, + "atone.nvim": { + "rev": "a2bbc8810287032756fb77e383bd3ea610208651", + "src": "https://github.com/XXiaoA/atone.nvim" + }, + "barbar.nvim": { + "rev": "539d73def39c9172b4d4d769f14090e08f37b29d", + "src": "https://github.com/romgrk/barbar.nvim" + }, + "gitsigns.nvim": { + "rev": "4ed47e8c4c66c921dc1d6643977e0526e1f44396", + "src": "https://github.com/lewis6991/gitsigns.nvim" + }, + "mason.nvim": { + "rev": "44d1e90e1f66e077268191e3ee9d2ac97cc18e65", + "src": "https://github.com/mason-org/mason.nvim" + }, "neovim": { "rev": "cf2a288696b03d0934da713d66c6d71557b5c997", "src": "https://github.com/rose-pine/neovim" }, + "nvim-lint": { + "rev": "4b03656c09c1561f89b6aa0665c15d292ba9499d", + "src": "https://github.com/mfussenegger/nvim-lint" + }, "nvim-lspconfig": { "rev": "9ccd58a7949091c0cc2777d4e92a45a209c808c1", "src": "https://github.com/neovim/nvim-lspconfig" }, + "nvim-tree.lua": { + "rev": "31503ad5d869fca61461d82a9126f62480ecb0ab", + "src": "https://github.com/nvim-tree/nvim-tree.lua" + }, + "nvim-web-devicons": { + "rev": "40e9d5a6cc3db11b309e39593fc7ac03bb844e38", + "src": "https://github.com/nvim-tree/nvim-web-devicons" + }, + "plenary.nvim": { + "rev": "b9fd5226c2f76c951fc8ed5923d85e4de065e509", + "src": "https://github.com/nvim-lua/plenary.nvim" + }, "roseline": { "rev": "f8c9088e72a238dc27039472116fc642e7f4dee9", "src": "https://github.com/maxmx03/roseline" + }, + "telescope-fzf-native.nvim": { + "rev": "6fea601bd2b694c6f2ae08a6c6fab14930c60e2c", + "src": "https://github.com/nvim-telescope/telescope-fzf-native.nvim" + }, + "telescope-undo.nvim": { + "rev": "928d0c2dc9606e01e2cc547196f48d2eaecf58e5", + "src": "https://github.com/debugloop/telescope-undo.nvim" + }, + "telescope.nvim": { + "rev": "cfb85dcf7f822b79224e9e6aef9e8c794211b20b", + "src": "https://github.com/nvim-telescope/telescope.nvim" + }, + "tiny-inline-diagnostic.nvim": { + "rev": "57a0eb84b2008c76e77930639890d9874195b1e1", + "src": "https://github.com/rachartier/tiny-inline-diagnostic.nvim" + }, + "undotree": { + "rev": "0e6d41d55ad147407e4ba00a292973de8db0b836", + "src": "https://github.com/jiaoshijie/undotree" + }, + "vim-mundo": { + "rev": "2ceda8c65f7b3f9066820729fc02003a09df91f9", + "src": "https://github.com/simnalamburt/vim-mundo" + }, + "which-key.nvim": { + "rev": "3aab2147e74890957785941f0c1ad87d0a44c15a", + "src": "https://github.com/folke/which-key.nvim" } } }