til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

Use LazyVim

Show Hidden files in Explorer and Picker

return {
  {
    "folke/snacks.nvim",
    opts = {
      picker = {
        sources = {
          files = {
            hidden = true,   -- Show hidden/dotfiles
            ignored = false, -- Respect .gitignore
          },
          grep = {
            hidden = true,   -- Also search in hidden files
            ignored = false,
          },
        },
      },
    },
  },
}

REF: LazyVim GitHub Discussions

Resources and References

  • https://www.lazyvim.org/
  • https://www.youtube.com/watch?v=N93cTbtLCIM
  • https://lazyvim-ambitious-devs.phillips.codes/course/chapter-1/#_choosing_a_terminal

  • https://darkhelmet.github.io/cheats/tools/vim-lazyvim/#lazyvim-specific