summary refs log tree commit diff
path: root/.vim/lua/plugins.lua
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2022-09-28 18:50:04 +0200
committerRobert Günzler <r@gnzler.io>2022-09-28 18:50:04 +0200
commitc10ecbc16dec71108748f192b5579a23b75651b9 (patch)
tree210837c4e3de43af09fda9408904d9e3b9445f9f /.vim/lua/plugins.lua
parentebfef035c6670ea79bbf6f1a6be210924fa33e91 (diff)
vim: wrap local packages in foldmarkers
Diffstat (limited to '.vim/lua/plugins.lua')
-rw-r--r--.vim/lua/plugins.lua19
1 files changed, 12 insertions, 7 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua
index 2c0bea5..db76618 100644
--- a/.vim/lua/plugins.lua
+++ b/.vim/lua/plugins.lua
@@ -1226,26 +1226,31 @@ require('packer').startup({function()
     config = function()
     end} -- }}}
 
-
-  use {'yorik1984/newpaper.nvim',
+  use {'yorik1984/newpaper.nvim', -- {{{
     config = function()
       if vim.g.night_and_day == 'day' then
         require('newpaper').setup()
       end
-    end}
+    end} -- }}}
+
+  use {'~/devel/projects/karafuru', rtp = 'vim', disable = false, -- {{{
   -- use {'https://git.sr.ht/~robertgzr/karafuru', rtp = 'vim',
-  use {'~/devel/projects/karafuru', rtp = 'vim', disable = false,
     run = 'make colorscheme',
     config = function()
       if not vim.g.night_and_day or vim.g.night_and_day == 'night' then
         vim.cmd [[colorscheme karafuru]]
       end
-    end}
+    end} -- }}}
 
-  use {'~/devel/projects/k2', rtp = 'nvim',
+  use {'~/devel/projects/k2', rtp = 'nvim', -- {{{
     config = function()
       require('k2').setup()
-    end}
+    end} -- }}}
+
+  use {'~/devel/projects/spinner.nvim', -- {{{
+    config = function()
+      require('spinner').setup()
+    end} -- }}}
 
 end,
 config = {