aboutsummaryrefslogtreecommitdiff
path: root/plugin/40-misc.lua
blob: 94e46e0af4f742aedfdb72b915ae4f86d538d5ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
vim.schedule(function()
  vim.pack.add({
    "https://github.com/andweeb/presence.nvim",
    "https://github.com/NStefan002/screenkey.nvim",
    "https://github.com/NStefan002/visual-surround.nvim",
    "https://github.com/christoomey/vim-tmux-navigator",
    "https://github.com/artemave/workspace-diagnostics.nvim",
    "https://github.com/lukas-reineke/indent-blankline.nvim",
  })

  require("presence").setup({
    main_image = "file",
  })
  require("screenkey").setup({})
  require("visual-surround").setup({})
  require("ibl").setup()
end)