fix: neovim

This commit is contained in:
Ryan Yin
2023-07-10 22:50:19 +08:00
parent 21b3d4ad37
commit 7cc49c29f1
62 changed files with 1998 additions and 2600 deletions

View File

@@ -0,0 +1,27 @@
local package = require('core.pack').package
local conf = require('modules.tools.config')
package({
'nvim-telescope/telescope.nvim',
cmd = 'Telescope',
config = conf.telescope,
dependencies = {
{ 'nvim-lua/plenary.nvim' },
{ 'nvim-telescope/telescope-fzy-native.nvim' },
},
})
package({
'glepnir/hlsearch.nvim',
event = 'BufRead',
config = function()
require('hlsearch').setup()
end,
})
-- Copilot AI Assistant
-- have no options, but need to run `:Copilot setup` after start neovim to login.
package({
'github/copilot.vim',
})