mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-25 02:41:26 +01:00
27 lines
564 B
Lua
27 lines
564 B
Lua
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',
|
|
}) |