diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-09-16 22:54:28 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-09-16 22:54:28 +0200 |
commit | 1f10205b39b1419c1644f749aea4b57baa12f4ea (patch) | |
tree | 13c061030866400632c87969bab35025b1f40d82 /lua | |
parent | 708c3e8d2d17329cb64c81539223d9e6904d85f5 (diff) | |
download | gabrielgio.lua-1f10205b39b1419c1644f749aea4b57baa12f4ea.tar.gz gabrielgio.lua-1f10205b39b1419c1644f749aea4b57baa12f4ea.tar.bz2 gabrielgio.lua-1f10205b39b1419c1644f749aea4b57baa12f4ea.zip |
feat: Sync
Diffstat (limited to 'lua')
-rw-r--r-- | lua/gabrielgio/telescope.lua | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/lua/gabrielgio/telescope.lua b/lua/gabrielgio/telescope.lua index b1e6cbe..d8089d1 100644 --- a/lua/gabrielgio/telescope.lua +++ b/lua/gabrielgio/telescope.lua @@ -2,24 +2,24 @@ local key = require("gabrielgio.key") local builtins = require("telescope.builtin") local telescope = require("telescope") -telescope.setup({ - defaults = { - file_ignore_patterns = { - "vendor/", - ".git/", - }, - vimgrep_arguments = { - "rg", - "--color=never", - "--no-heading", - "--with-filename", - "--line-number", - "--column", - "--smart-case", - "--hidden", - }, - }, -}) +telescope.setup{ + defaults = { + file_ignore_patterns = { + 'vendor/', + '\\.git/' + }, + vimgrep_arguments = { + "rg", + "--color=never", + "--no-heading", + "--with-filename", + "--line-number", + "--column", + "--smart-case", + "--hidden" + } + }, +} telescope.load_extension("file_browser") |