diff options
author | Squibid <me@zacharyscheiman.com> | 2023-02-26 16:19:31 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-02-26 16:19:31 -0500 |
commit | f71d4e119a4246b7fcdb1c0c3d8a2c9d78bf7785 (patch) | |
tree | 46544acf88645617304b6a4790eff64dc53b7626 /lua/core/plugins.lua | |
parent | c4fcb3f442333df669a50c443a7fa4cde6e15dda (diff) | |
download | nvim-f71d4e119a4246b7fcdb1c0c3d8a2c9d78bf7785.tar.gz nvim-f71d4e119a4246b7fcdb1c0c3d8a2c9d78bf7785.tar.bz2 nvim-f71d4e119a4246b7fcdb1c0c3d8a2c9d78bf7785.zip |
remove codewindow and replace with nvim-scrollbar
Diffstat (limited to '')
-rw-r--r-- | lua/core/plugins.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua index efedb7e..c27da02 100644 --- a/lua/core/plugins.lua +++ b/lua/core/plugins.lua @@ -10,12 +10,13 @@ end vim.opt.rtp:prepend(lazypath) require('lazy').setup{ - { 'notjedi/nvim-rooter.lua', config = true }, { 'tamton-aquib/essentials.nvim' }, -- only the most useless plugins (some of these are also ui related) { 'goolord/alpha-nvim' }, - { 'gorbit99/codewindow.nvim' }, + { 'petertriho/nvim-scrollbar', + dependencies = { 'kevinhwang91/nvim-hlslens' }, + }, { 'alec-gibson/nvim-tetris' }, { 'kwakzalver/duckytype.nvim', config = true }, -- like monkey type { 'melkster/modicator.nvim' }, |