From 3f93b57902e02d38468cb18ce442f2e66e52f901 Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Fri, 8 Aug 2025 22:07:28 -0400 Subject: improve zsh and telescope --- .config/nvim/lua/plugins/telescope.lua | 2 +- .zshrc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/telescope.lua b/.config/nvim/lua/plugins/telescope.lua index 8d94ca4..264a77b 100644 --- a/.config/nvim/lua/plugins/telescope.lua +++ b/.config/nvim/lua/plugins/telescope.lua @@ -8,7 +8,7 @@ return { local lazy_telescope = function(builtin) return function(...) if builtin == 'find_files_custom' then - require('telescope.builtin').find_files({ find_command = {'rg', '--files', '--hidden', '-g', '!.git', '-g', '!external/' }}) + require('telescope.builtin').find_files({ find_command = {'rg', '--files', '--hidden', '-g', '!.git', '-g', '!external/', '-g', '!build/' }}) else require('telescope.builtin')[builtin](...) end diff --git a/.zshrc b/.zshrc index f1a72ba..aa65b2f 100644 --- a/.zshrc +++ b/.zshrc @@ -13,6 +13,7 @@ setopt hist_ignore_space # Misc options setopt autocd setopt extendedglob +unsetopt BEEP # Aliases alias ls='ls --color=auto' -- cgit v1.2.3