Browse Source

nixpkgs/neovim: configure telescope pickers

Thomas Dy 3 years ago
parent
commit
9b1e33d0d3
1 changed files with 8 additions and 0 deletions
  1. 8 0
      .config/nixpkgs/neovim/plugins.lua

+ 8 - 0
.config/nixpkgs/neovim/plugins.lua

@@ -13,6 +13,14 @@ require('telescope').setup({
     },
     sorting_strategy = 'ascending',
   },
+  pickers = {
+    buffers = {
+      sort_lastused = true,
+    },
+    find_files = {
+      find_command = { "fd", "--type", "f", "--strip-cwd-prefix" }
+    },
+  },
 })
 
 -- use native sorter for better performance