all repos

init.lua @ 9aacaae2b397ed35ff0c1bc6f3e0695caa67be2b

my nvim config
2 files changed, 2 insertions(+), 2 deletions(-)
feat(nvimtree, telescope): update way to hide .git folder
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2022-07-29 00:45:12 +0300
Parent: deac6df
M lua/configs/nvimtree.lua

@@ -3,7 +3,7 @@ update_cwd = true,

diagnostics = { enable = true }, filters = { dotfiles = true, - custom = { ".git", "node_modules", "__pycache__", "vendor", "target" }, + custom = { "^\\.git$", "node_modules", "__pycache__", "vendor", "target" }, }, renderer = { group_empty = true }, git = { enable = true, ignore = false },
M lua/configs/telescope.lua

@@ -6,7 +6,7 @@ defaults = {

prompt_prefix = " ", selection_caret = " ", file_ignore_patterns = { - ".git", + "^\\.git$", "node_modules", "__pycache__", "target",