1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-25 04:27:46 +01:00

nvim: bootstrapping bugfixes

This commit is contained in:
TiynGER 2023-01-13 05:06:36 +01:00
parent aabc0f208e
commit adef5705a7

View File

@ -16,6 +16,12 @@ local packer_bootstrap = ensure_packer()
-- load plugins with packer
return require("packer").startup(function(use)
-- package manager
use 'wbthomason/packer.nvim'
if packer_bootstrap then
require('packer').sync()
end
-- automatic closing of brackets
use 'raimondi/delimitmate'
@ -52,11 +58,6 @@ return require("packer").startup(function(use)
-- showing color of hex values, etc
use 'norcalli/nvim-colorizer.lua'
-- package manager
if packer_bootstrap then
require('packer').sync()
end
-- colorful brackets
use 'luochen1990/rainbow'