Add fuzzy finder

This commit is contained in:
2026-01-14 21:13:26 +01:00
parent 3edbe2c7f3
commit 77050a542f
4 changed files with 34 additions and 2 deletions

View File

@ -18,8 +18,9 @@ vim.opt.rtp:prepend(lazypath)
-- Initialize lazy.nvim
local plugins = {
require("plugins.tokyonight"), -- theme
require("plugins.treesitter"), -- syntax tree
require("plugins.tokyonight"), -- theme
require("plugins.treesitter"), -- syntax tree
require("plugins.telescope"), -- fuzzy finder
}
require("lazy").setup(plugins)