cder.nvim icon indicating copy to clipboard operation
cder.nvim copied to clipboard

help with config

Open battlelitany opened this issue 8 months ago • 4 comments

Hi, I'm sorry to be a bother, but I'm still a bit of a newbie at configuring Neovim myself. I have the extension working, but I noticed you said that if bash isn't installed, I would need to change the command_executor option in order to get the previews to work.

What would I change it to if I'm on Windows? Here's the current error I get: image

Also, I set cder as its own .lua file in my plugins folder, and I'm not sure if I should instead change it to the way you have it where I call it in telescope instead.

Here's my current configuration:

return {
  "zane-/cder.nvim",
  keys = {
    {
      "<leader>tc",
      ":Telescope cder<cr>",
      desc = "Change Working Directory",
    }
  },
  config = function()
    require("telescope").load_extension("cder")
  end,
}

Again, apologies for the trouble!

battlelitany avatar Jun 12 '24 23:06 battlelitany