diff options
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 6af54ee..8d1e2c4 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua | |||
@@ -41,7 +41,11 @@ return require('packer').startup(function(use) | |||
41 | } | 41 | } |
42 | 42 | ||
43 | -- dashboard | 43 | -- dashboard |
44 | use 'glepnir/dashboard-nvim' | 44 | use { |
45 | 'glepnir/dashboard-nvim', | ||
46 | event = 'VimEnter', | ||
47 | requires = {'nvim-tree/nvim-web-devicons'} | ||
48 | } | ||
45 | 49 | ||
46 | -- completion suite | 50 | -- completion suite |
47 | use 'hrsh7th/nvim-cmp' | 51 | use 'hrsh7th/nvim-cmp' |
@@ -142,11 +146,11 @@ return require('packer').startup(function(use) | |||
142 | use 'numToStr/Comment.nvim' | 146 | use 'numToStr/Comment.nvim' |
143 | 147 | ||
144 | -- icon pack | 148 | -- icon pack |
145 | use 'kyazdani42/nvim-web-devicons' | 149 | use 'nvim-tree/nvim-web-devicons' |
146 | -- statusline of the $CURRENT_YEAR | 150 | -- statusline of the $CURRENT_YEAR |
147 | use { | 151 | use { |
148 | 'nvim-lualine/lualine.nvim', | 152 | 'nvim-lualine/lualine.nvim', |
149 | requires = {'kyazdani42/nvim-web-devicons', opt = true} | 153 | requires = {'nvim-tree/nvim-web-devicons', opt = true} |
150 | } | 154 | } |
151 | -- tabline | 155 | -- tabline |
152 | use {'romgrk/barbar.nvim', wants = 'nvim-web-devicons'} | 156 | use {'romgrk/barbar.nvim', wants = 'nvim-web-devicons'} |