COMPLETE rewrite of neovim config to see if we can speed things up!

This commit is contained in:
2025-06-10 04:30:12 -05:00
parent 7e5bed8960
commit a0b7840a21
39 changed files with 1428 additions and 1112 deletions

View File

@ -0,0 +1,31 @@
local builtin = require('telescope.builtin')
return {
{
'nvim-telescope/telescope.nvim',
tag = '0.1.8',
dependencies = { 'nvim-lua/plenary.nvim' },
cmd = 'Telescope',
opts = {
defaults = {
file_ignore_patterns = {"node_modules", ".git", ".cache", ".DS_Store", "Steam", "Media", "Pictures", "Downloads", "Videos", "Music", ".venv", ".conda", "School"},
},
},
keys = {
{
'<leader>ff', builtin.find_files, mode = { 'n'}, desc = 'Find files'
},
{
'<leader>fg', builtin.git_files, mode = { 'n'}, desc = 'Find files'
},
{
'<leader>fs',
function()
builtin.grep_string({ search = vim.fn.input("Grep > ") })
end,
mode = { 'n'},
desc = 'Find files'
},
},
},
}