new: ripgrep show hidden files
This commit is contained in:
parent
766edf680a
commit
b1dd2c897a
4 changed files with 6 additions and 1 deletions
|
@ -15,6 +15,7 @@
|
||||||
path: git/gitignore_global
|
path: git/gitignore_global
|
||||||
~/.npmrc: npmrc
|
~/.npmrc: npmrc
|
||||||
~/.psqlrc: psqlrc
|
~/.psqlrc: psqlrc
|
||||||
|
~/.ripgreprc: ripgreprc
|
||||||
~/.zpreztorc: zsh/zpreztorc
|
~/.zpreztorc: zsh/zpreztorc
|
||||||
~/.zlogin: zsh/zlogin
|
~/.zlogin: zsh/zlogin
|
||||||
~/.zlogout: zsh/zlogout
|
~/.zlogout: zsh/zlogout
|
||||||
|
|
|
@ -35,7 +35,9 @@ return require('packer').startup(function()
|
||||||
{ 'kyazdani42/nvim-web-devicons' },
|
{ 'kyazdani42/nvim-web-devicons' },
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
vim.api.nvim_set_keymap('n', '-', '<cmd>Telescope find_files<CR>', { noremap = true })
|
vim.api.nvim_set_keymap('n', '-',
|
||||||
|
':Telescope find_files find_command=rg,--ignore,--ignore-case,--hidden,--files<CR>',
|
||||||
|
{ noremap = true })
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
1
ripgreprc
Normal file
1
ripgreprc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
--glob=!.git/*
|
|
@ -78,3 +78,4 @@ done
|
||||||
export -U PATH
|
export -U PATH
|
||||||
export CONDA_ENVS_PATH=$HOME/.conda/envs:/opt/miniconda3/envs
|
export CONDA_ENVS_PATH=$HOME/.conda/envs:/opt/miniconda3/envs
|
||||||
export CONDA_PKGS_DIRS=$HOME/.conda/pkgs
|
export CONDA_PKGS_DIRS=$HOME/.conda/pkgs
|
||||||
|
export RIPGREP_CONFIG_PATH=$HOME/.ripgreprc
|
||||||
|
|
Loading…
Add table
Reference in a new issue