nvim: use no longer causes lua language server to complain

This commit is contained in:
PowerUser64 2021-12-16 14:41:01 -08:00
parent bb2045e72d
commit b3a1b5c71e

View file

@ -8,6 +8,8 @@ if fn.empty(fn.glob(install_path)) > 0 then
end
-- }}
local use = require('packer').use
return require('packer').startup({function()
-- TODO: Find a better way to organize this
@ -42,8 +44,14 @@ return require('packer').startup({function()
require('onedark').setup()
end
}
use { -- color tag highlighter
'norcalli/nvim-colorizer.lua'
use { -- css color tag highlighter (ex: #FFB13B)
'norcalli/nvim-colorizer.lua',
config = function()
vim.cmd 'command! COL ColorizerToggle'
end,
}
use { -- tabline
'alvarosevilla95/luatab.nvim'
}
-- IDE features