1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00

Show symlinks with live_grep

This commit is contained in:
Mo8it 2022-03-25 13:57:59 +01:00
parent ac4d15180d
commit 1eb5c7929b

View file

@ -1,4 +1,18 @@
require("telescope").setup()
require("telescope").setup({
defaults = {
vimgrep_arguments = {
"rg",
"--color=never",
"--no-heading",
"--with-filename",
"--line-number",
"--column",
"--smart-case",
-- Addition
"--follow",
},
},
})
require("telescope").load_extension("fzf")
local M = {}