setup lualine and telescope

This commit is contained in:
2025-09-12 01:23:27 +02:00
parent 95709eb068
commit 3a395619a3
7 changed files with 40 additions and 10 deletions

14
lua/plugins/telescope.lua Normal file
View File

@@ -0,0 +1,14 @@
return {
"nvim-telescope/telescope.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
},
config = function()
require("telescope").setup({
defaults = {
prompt_prefix = "🔍 ",
sorting_strategy = "ascending"
}
})
end
}