Get FZF working in Neovim + Lazy

This commit is contained in:
Josh Sherman 2024-10-17 12:51:41 -05:00
parent a3072e86e3
commit 9e03f541fa
No known key found for this signature in database
GPG key ID: 55B058A80530EF22
2 changed files with 10 additions and 1 deletions

View file

@ -2,6 +2,7 @@
"ale": { "branch": "master", "commit": "2e5f135836a700dcc6b787f10097ebdeb8e22abb" }, "ale": { "branch": "master", "commit": "2e5f135836a700dcc6b787f10097ebdeb8e22abb" },
"copilot.vim": { "branch": "release", "commit": "87038123804796ca7af20d1b71c3428d858a9124" }, "copilot.vim": { "branch": "release", "commit": "87038123804796ca7af20d1b71c3428d858a9124" },
"editorconfig-vim": { "branch": "master", "commit": "ba2ce027c5b0e523e658d24657ce3ae3306c9fe0" }, "editorconfig-vim": { "branch": "master", "commit": "ba2ce027c5b0e523e658d24657ce3ae3306c9fe0" },
"fzf": { "branch": "master", "commit": "90a8800bb596cd98e103788096f2780ee97100b4" },
"fzf.vim": { "branch": "master", "commit": "ec75ffbfd50630bf2b8d444d89487e149bacf7f3" }, "fzf.vim": { "branch": "master", "commit": "ec75ffbfd50630bf2b8d444d89487e149bacf7f3" },
"lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" }, "lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" },
"solarized-osaka.nvim": { "branch": "main", "commit": "126d394c0c979a99206214a2b6b8c86e456c9c0f" }, "solarized-osaka.nvim": { "branch": "main", "commit": "126d394c0c979a99206214a2b6b8c86e456c9c0f" },

View file

@ -28,6 +28,11 @@ require('lazy').setup({
-- Solarized Osaka -- Solarized Osaka
{ 'craftzdog/solarized-osaka.nvim' }, { 'craftzdog/solarized-osaka.nvim' },
-- File exploration and navigation -- File exploration and navigation
{
'junegunn/fzf',
build = function() vim.cmd('FzfInstall') end,
event = 'VimEnter',
},
{ 'junegunn/fzf.vim' }, { 'junegunn/fzf.vim' },
-- Languages and syntax -- Languages and syntax
{ 'sheerun/vim-polyglot' }, { 'sheerun/vim-polyglot' },
@ -37,7 +42,10 @@ require('lazy').setup({
-- TypeScript -- TypeScript
{ 'leafgarland/typescript-vim' }, { 'leafgarland/typescript-vim' },
{ 'Quramy/tsuquyomi' }, { 'Quramy/tsuquyomi' },
{ 'Shougo/vimproc.vim', build = 'make' }, {
'Shougo/vimproc.vim',
build = 'make',
},
-- GitHub integration -- GitHub integration
{ 'github/copilot.vim' }, { 'github/copilot.vim' },
{ 'ruanyl/vim-gh-line' }, { 'ruanyl/vim-gh-line' },