Get FZF working in Neovim + Lazy
This commit is contained in:
parent
a3072e86e3
commit
9e03f541fa
2 changed files with 10 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
"ale": { "branch": "master", "commit": "2e5f135836a700dcc6b787f10097ebdeb8e22abb" },
|
||||
"copilot.vim": { "branch": "release", "commit": "87038123804796ca7af20d1b71c3428d858a9124" },
|
||||
"editorconfig-vim": { "branch": "master", "commit": "ba2ce027c5b0e523e658d24657ce3ae3306c9fe0" },
|
||||
"fzf": { "branch": "master", "commit": "90a8800bb596cd98e103788096f2780ee97100b4" },
|
||||
"fzf.vim": { "branch": "master", "commit": "ec75ffbfd50630bf2b8d444d89487e149bacf7f3" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" },
|
||||
"solarized-osaka.nvim": { "branch": "main", "commit": "126d394c0c979a99206214a2b6b8c86e456c9c0f" },
|
||||
|
|
|
@ -28,6 +28,11 @@ require('lazy').setup({
|
|||
-- Solarized Osaka
|
||||
{ 'craftzdog/solarized-osaka.nvim' },
|
||||
-- File exploration and navigation
|
||||
{
|
||||
'junegunn/fzf',
|
||||
build = function() vim.cmd('FzfInstall') end,
|
||||
event = 'VimEnter',
|
||||
},
|
||||
{ 'junegunn/fzf.vim' },
|
||||
-- Languages and syntax
|
||||
{ 'sheerun/vim-polyglot' },
|
||||
|
@ -37,7 +42,10 @@ require('lazy').setup({
|
|||
-- TypeScript
|
||||
{ 'leafgarland/typescript-vim' },
|
||||
{ 'Quramy/tsuquyomi' },
|
||||
{ 'Shougo/vimproc.vim', build = 'make' },
|
||||
{
|
||||
'Shougo/vimproc.vim',
|
||||
build = 'make',
|
||||
},
|
||||
-- GitHub integration
|
||||
{ 'github/copilot.vim' },
|
||||
{ 'ruanyl/vim-gh-line' },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue