Przeglądaj źródła

nixpkgs/neovim: show untracked files in git chooser

Thomas Dy 2 lat temu
rodzic
commit
75658d3058
1 zmienionych plików z 2 dodań i 3 usunięć
  1. 2 3
      .config/nixpkgs/neovim/plugins.lua

+ 2 - 3
.config/nixpkgs/neovim/plugins.lua

@@ -32,9 +32,8 @@ require('telescope').load_extension('fzf')
 -- custom picker to fallback to files if no git
 local telescope_builtin = require('telescope.builtin')
 _G.project_files = function()
-  local opts = {}
-  local ok = pcall(telescope_builtin.git_files, opts)
-  if not ok then telescope_builtin.find_files(opts) end
+  local ok = pcall(telescope_builtin.git_files, { show_untracked = true })
+  if not ok then telescope_builtin.find_files({}) end
 end
 
 -- shows added/removed/changed lines