ignore node_modules
This commit is contained in:
parent
b4539cb3fb
commit
957a7b62ca
10
init.lua
10
init.lua
|
@ -336,6 +336,9 @@ require('lazy').setup({
|
||||||
--
|
--
|
||||||
-- Use the `dependencies` key to specify the dependencies of a particular plugin
|
-- Use the `dependencies` key to specify the dependencies of a particular plugin
|
||||||
|
|
||||||
|
-- :checkhealth telescope
|
||||||
|
-- choco install fd
|
||||||
|
-- choco install ripgrep
|
||||||
{ -- Fuzzy Finder (files, lsp, etc)
|
{ -- Fuzzy Finder (files, lsp, etc)
|
||||||
'nvim-telescope/telescope.nvim',
|
'nvim-telescope/telescope.nvim',
|
||||||
event = 'VimEnter',
|
event = 'VimEnter',
|
||||||
|
@ -392,6 +395,13 @@ require('lazy').setup({
|
||||||
-- },
|
-- },
|
||||||
-- },
|
-- },
|
||||||
-- pickers = {}
|
-- pickers = {}
|
||||||
|
defaults = {
|
||||||
|
file_ignore_patterns = {
|
||||||
|
'node_modules',
|
||||||
|
'.angular',
|
||||||
|
'cypress',
|
||||||
|
},
|
||||||
|
},
|
||||||
extensions = {
|
extensions = {
|
||||||
['ui-select'] = {
|
['ui-select'] = {
|
||||||
require('telescope.themes').get_dropdown(),
|
require('telescope.themes').get_dropdown(),
|
||||||
|
|
Loading…
Reference in New Issue