[NeoVim] Clean plugins settings

This commit is contained in:
2022-08-24 16:05:58 +02:00
committed by Pierre Jeanjean
parent 029f385a41
commit db13710736
20 changed files with 246 additions and 238 deletions

View File

@@ -0,0 +1,9 @@
(import-macros {: setup} :macros)
(local actions (require :telescope.actions))
(setup :telescope {
:defaults {:mappings {:n {:S actions.file_split
:s actions.file_vsplit}}
:get_selection_window (. (require :window-picker) :pick_window)}
:pickers {:find_files {:find_command [:fd "--type" "f" "--strip-cwd-prefix" "--hidden"]}
:live_grep {:vimgrep_arguments ["rg" "--color=never" "--no-heading" "--with-filename" "--line-number" "--column" "--smart-case" "--hidden"]}}})