From b1dd2c897aaf02ef56739fddaffb59ef45a4ff1f Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Tue, 24 May 2022 11:53:13 -0700 Subject: [PATCH] new: ripgrep show hidden files --- install.conf.yaml | 1 + nvim/plugins.lua | 4 +++- ripgreprc | 1 + zsh/zshenv | 1 + 4 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 ripgreprc diff --git a/install.conf.yaml b/install.conf.yaml index 41e55b9..01faf31 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -15,6 +15,7 @@ path: git/gitignore_global ~/.npmrc: npmrc ~/.psqlrc: psqlrc + ~/.ripgreprc: ripgreprc ~/.zpreztorc: zsh/zpreztorc ~/.zlogin: zsh/zlogin ~/.zlogout: zsh/zlogout diff --git a/nvim/plugins.lua b/nvim/plugins.lua index 5cebe36..ba738d6 100644 --- a/nvim/plugins.lua +++ b/nvim/plugins.lua @@ -35,7 +35,9 @@ return require('packer').startup(function() { 'kyazdani42/nvim-web-devicons' }, }, config = function() - vim.api.nvim_set_keymap('n', '-', 'Telescope find_files', { noremap = true }) + vim.api.nvim_set_keymap('n', '-', + ':Telescope find_files find_command=rg,--ignore,--ignore-case,--hidden,--files', + { noremap = true }) end, } diff --git a/ripgreprc b/ripgreprc new file mode 100644 index 0000000..93e2cfc --- /dev/null +++ b/ripgreprc @@ -0,0 +1 @@ +--glob=!.git/* diff --git a/zsh/zshenv b/zsh/zshenv index 19bcdc0..c26a015 100644 --- a/zsh/zshenv +++ b/zsh/zshenv @@ -78,3 +78,4 @@ done export -U PATH export CONDA_ENVS_PATH=$HOME/.conda/envs:/opt/miniconda3/envs export CONDA_PKGS_DIRS=$HOME/.conda/pkgs +export RIPGREP_CONFIG_PATH=$HOME/.ripgreprc