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