dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

utilities.lua (428B)


      1 return {
      2   {
      3     "ibhagwan/fzf-lua",
      4     opts = function(_, opts)
      5       opts.winopts = {
      6         preview = {
      7           vertical = "down:65%",
      8           layout = "vertical",
      9         },
     10       }
     11     end,
     12   },
     13   {
     14     "mhinz/vim-signify",
     15     config = function()
     16       vim.g.signify_vcs_list = { "git", "hg" }
     17     end,
     18   },
     19   {
     20     "stevearc/dressing.nvim",
     21     opts = {},
     22     event = "VeryLazy",
     23   },
     24   { "tpope/vim-fugitive" },
     25 }