A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/nvim-tree/nvim-web-devicons/issues/271 below:

nvim-web-devicons make other plugins bugged with floating texts · Issue #271 · nvim-tree/nvim-web-devicons · GitHub

local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({
    "git",
    "clone",
    "--filter=blob:none",
    "https://github.com/folke/lazy.nvim.git",
    "--branch=stable",
    lazypath,
  })
end
vim.opt.rtp:prepend(lazypath)

require("lazy").setup({
  { "nvim-lua/plenary.nvim", },
  {
    "nvim-telescope/telescope.nvim",
    dependencies = {
      "nvim-lua/plenary.nvim",
    },
    config = function ()
      local telescope_action_layout = require("telescope.actions.layout")

      require("telescope").setup({
        defaults = {
          initial_mode = "insert",
          mappings = {
            n = {
              ["<M-/>"] = telescope_action_layout.toggle_preview,
            },
            i = {
              ["<M-/>"] = telescope_action_layout.toggle_preview,
            }
          },
          preview = {
            hide_on_startup = true,
            filesize_limit = 10,
            treesitter = true,
          }
        },
        fzf = {
          fuzzy = true,
          override_generic_sorter = true,
          override_file_sorter = true,
          case_mode = "smart_case",
        },
      })
    end,
  },

  {
    "kyazdani42/nvim-web-devicons",
    config = function()
      require("nvim-web-devicons").setup({
        default = true,
      })
    end,
  },
})

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4